2022-09-23 18:55:45 -04:00
|
|
|
{% extends "base.jinja2" %}
|
2022-09-22 11:05:17 -04:00
|
|
|
|
2022-09-23 18:55:45 -04:00
|
|
|
{% block title %}UnderCover{% endblock %}
|
2022-09-22 16:23:01 -04:00
|
|
|
|
2022-09-23 18:55:45 -04:00
|
|
|
{% block head %}
|
2021-07-24 14:51:13 -04:00
|
|
|
<script type="text/javascript">
|
2022-09-22 16:23:01 -04:00
|
|
|
window.onload = () => {
|
2021-07-28 18:43:19 -04:00
|
|
|
{% if errors %}
|
|
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
|
|
{% endif %}
|
2022-09-22 16:23:01 -04:00
|
|
|
|
2021-07-31 19:18:54 -04:00
|
|
|
if (window.location.search.includes("reset=true")) {
|
2022-09-22 16:27:47 -04:00
|
|
|
window.history.pushState({}, document.title, window.location.pathname);
|
|
|
|
return;
|
2021-07-25 14:59:01 -04:00
|
|
|
}
|
2022-09-22 16:23:01 -04:00
|
|
|
decodeURIComponent(document.cookie).split(';').forEach(cookie => {
|
|
|
|
[id, value] = cookie.trim().split('=')
|
2022-09-23 09:22:27 -04:00
|
|
|
if (!id || !value) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const e = document.getElementById(id)
|
|
|
|
if (e) {
|
|
|
|
e.value = value
|
|
|
|
}
|
2021-07-31 22:27:51 -04:00
|
|
|
})
|
2021-07-24 14:51:13 -04:00
|
|
|
}
|
2022-09-22 16:23:01 -04:00
|
|
|
|
|
|
|
const clearErrors = () => {
|
2022-09-22 16:27:47 -04:00
|
|
|
const e = document.getElementById('errors')
|
|
|
|
e.parentNode.removeChild(e)
|
2022-09-22 16:23:01 -04:00
|
|
|
}
|
2021-07-24 14:51:13 -04:00
|
|
|
</script>
|
2022-09-23 18:55:45 -04:00
|
|
|
{% endblock head %}
|
2022-09-22 11:05:17 -04:00
|
|
|
|
2022-09-23 18:55:45 -04:00
|
|
|
{% block content %}
|
2022-09-23 14:14:06 -04:00
|
|
|
{% if username %}
|
2022-09-23 15:02:15 -04:00
|
|
|
<div class="user logged-in">
|
|
|
|
<p>You are logged in as {{ username }}</p>
|
|
|
|
<form action="/logout">
|
|
|
|
<input type="submit" value="Logout">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="user logged-out">
|
|
|
|
<p>You are here as a guest.</p>
|
2022-09-23 15:14:24 -04:00
|
|
|
<form action="/login" method="post">
|
|
|
|
<label for="login">Username: </label>
|
|
|
|
<input id="login" maxlength="32" minlength="4" name="login" type="text" placeholder="sagev9000">
|
2022-09-23 15:02:15 -04:00
|
|
|
|
|
|
|
<label for="password">Password: </label>
|
|
|
|
<input id="password" maxlength="32" minlength="4" name="password" type="password">
|
|
|
|
|
2022-09-23 15:12:07 -04:00
|
|
|
<input type="submit" value="Login">
|
2022-09-23 15:02:15 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
2022-09-23 14:14:06 -04:00
|
|
|
{% endif %}
|
2022-09-22 16:23:01 -04:00
|
|
|
|
2022-09-22 16:11:26 -04:00
|
|
|
{% from "_formhelpers.jinja2" import render_field %}
|
2022-09-23 09:22:27 -04:00
|
|
|
<form method=post id="letter-form">
|
2022-09-22 11:05:17 -04:00
|
|
|
<dl>
|
|
|
|
{{ render_field(form.username) }}
|
|
|
|
{{ render_field(form.company) }}
|
2022-09-22 16:55:49 -04:00
|
|
|
{{ render_field(form.jobAndPronoun) }}
|
|
|
|
{{ render_field(form.skillTypes) }}
|
|
|
|
{{ render_field(form.mySkills) }}
|
2022-09-22 11:05:17 -04:00
|
|
|
{{ render_field(form.body, 'class=bigtext') }}
|
2022-09-22 16:55:49 -04:00
|
|
|
{{ render_field(form.closingText) }}
|
2022-09-22 11:05:17 -04:00
|
|
|
</dl>
|
2022-09-22 16:23:01 -04:00
|
|
|
|
2022-09-22 11:05:17 -04:00
|
|
|
{% if errors %}
|
2022-09-22 16:23:01 -04:00
|
|
|
<div id=errors>
|
|
|
|
<h3>Your letter has errors.</h3>
|
|
|
|
<p>
|
|
|
|
There is likely a typo in one of your variables (the {\blabla} bits).<br>
|
|
|
|
Make sure each is spelled correctly, and has the correct brackets on either side
|
|
|
|
</p>
|
|
|
|
<p class=errors>
|
|
|
|
{% for error in errors %}
|
|
|
|
{{ error }}<br>
|
|
|
|
{% endfor %}
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-09-22 11:05:17 -04:00
|
|
|
{% endif %}
|
2022-09-22 16:23:01 -04:00
|
|
|
|
2022-09-23 09:22:27 -04:00
|
|
|
<a href="javascript:void(0)"
|
|
|
|
class="wipe up-wipe"
|
2022-09-22 16:23:01 -04:00
|
|
|
{% if errors %}
|
2022-09-23 09:22:27 -04:00
|
|
|
onclick="clearErrors();document.getElementById('letter-form').submit()"
|
|
|
|
{% else %}
|
|
|
|
onclick="document.getElementById('letter-form').submit()"
|
2022-09-22 16:23:01 -04:00
|
|
|
{% endif %}
|
2022-09-23 09:22:27 -04:00
|
|
|
>Generate PDF</a>
|
2022-09-22 11:05:17 -04:00
|
|
|
</form>
|
2022-09-23 18:55:45 -04:00
|
|
|
{% endblock content %}
|