2021-07-23 17:30:15 -04:00
|
|
|
<!doctype html>
|
2021-07-28 22:50:30 -04:00
|
|
|
<html lang="en">
|
2022-09-22 11:05:17 -04:00
|
|
|
|
2021-07-23 17:30:15 -04:00
|
|
|
<head>
|
2021-07-24 01:08:18 -04:00
|
|
|
<link rel="stylesheet" type="text/css" href="
|
2021-07-28 22:50:30 -04:00
|
|
|
{{ url_for('static', filename='styles_min.css') }}">
|
2022-09-22 11:05:17 -04:00
|
|
|
<meta name="viewport" content="user-scalable=no;width=device-width">
|
2021-07-24 14:51:13 -04:00
|
|
|
<script type="text/javascript">
|
2021-07-28 18:43:19 -04:00
|
|
|
function init() {
|
|
|
|
{% if errors %}
|
|
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
|
|
{% endif %}
|
2021-07-31 19:18:54 -04:00
|
|
|
if (window.location.search.includes("reset=true")) {
|
|
|
|
window.history.pushState({},document.title,window.location.pathname);
|
|
|
|
return;
|
2021-07-25 14:59:01 -04:00
|
|
|
}
|
2021-07-31 22:27:51 -04:00
|
|
|
decodeURIComponent(document.cookie).split(';').forEach(s => {
|
|
|
|
[id, v] = s.trim().split('=')
|
|
|
|
document.getElementById(id).value = v
|
|
|
|
})
|
2021-07-24 14:51:13 -04:00
|
|
|
}
|
2021-07-28 18:43:19 -04:00
|
|
|
window.onload = init;
|
2021-07-24 14:51:13 -04:00
|
|
|
</script>
|
2021-07-23 17:30:15 -04:00
|
|
|
</head>
|
2022-09-22 11:05:17 -04:00
|
|
|
|
2021-07-23 17:30:15 -04:00
|
|
|
<body>
|
2022-09-22 11:05:17 -04:00
|
|
|
<h1>Under<wbr>Cover</h1>
|
|
|
|
<h2>The secret cover letter generator</h2>
|
|
|
|
{% from "_formhelpers.html" import render_field %}
|
|
|
|
<form method=post>
|
|
|
|
<dl>
|
|
|
|
{{ render_field(form.username) }}
|
|
|
|
{{ render_field(form.company) }}
|
|
|
|
{{ render_field(form.jobandpronoun) }}
|
|
|
|
{{ render_field(form.skilltypes) }}
|
|
|
|
{{ render_field(form.myskills) }}
|
|
|
|
{{ render_field(form.body, 'class=bigtext') }}
|
|
|
|
{{ render_field(form.closingtext) }}
|
|
|
|
</dl>
|
|
|
|
{% if errors %}
|
|
|
|
<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>
|
|
|
|
{% endif %}
|
|
|
|
<input class=submit type=submit value="Submit"
|
|
|
|
{% if errors %}
|
|
|
|
onclick="var e = document.getElementById('errors'); e.parentNode.removeChild(e);"
|
|
|
|
{% endif %}
|
|
|
|
>
|
|
|
|
</form>
|
2021-07-23 17:30:15 -04:00
|
|
|
</body>
|
|
|
|
</html>
|