38 lines
1.0 KiB
Django/Jinja
38 lines
1.0 KiB
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{% block title %}UnderCover{% endblock title %}</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css') }}">
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.png') }}" />
|
|
<meta name="viewport" content="user-scalable=no; width=device-width">
|
|
{% block head %}{{ head }}{% endblock head %}
|
|
</head>
|
|
|
|
<body>
|
|
{% if username %}
|
|
<div class="user logged-in">
|
|
<p style="margin: 0 1em 0 0;">{{ username }}</p>
|
|
<form action="/logout">
|
|
<input class="black-white-button" style="margin: 0; padding: 0.4em;" type="submit" value="Logout">
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
<a href="/" style="text-decoration: none;">
|
|
<h1><span class="logo left">Under</span><span class="logo right">Cover</span></h1>
|
|
</a>
|
|
<h2>The secret cover letter generator</h2>
|
|
{% if error %}
|
|
<div class="errors">
|
|
{{ error }}
|
|
</div>
|
|
{% endif %}
|
|
<div>
|
|
{% block content %}
|
|
{{ content }}
|
|
{% endblock content %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|