2024-10-21 07:55:17 -07:00
|
|
|
<!-- home.html -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-10-22 02:20:29 -07:00
|
|
|
<title>EPB Statement Writer</title>
|
2024-10-21 17:38:42 -07:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
|
|
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-black.css">
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<style>
|
2024-10-21 21:46:06 -07:00
|
|
|
html,body,h1,h2,h3,h4,h5,h6,form {width: 100%; padding: 15px; margin: auto; font-size: 18px; font-family: "Roboto", sans-serif; background-color: #1e2129; color: #bdbfc4;}
|
2024-10-21 17:38:42 -07:00
|
|
|
strong {color: #02bcbf;}
|
|
|
|
</style>
|
2024-10-21 07:55:17 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{% if request.method == "POST" %}
|
2024-10-22 01:18:37 -07:00
|
|
|
{{ response|safe }}
|
|
|
|
{% else %}
|
|
|
|
{{ response|safe }}
|
2024-10-21 07:55:17 -07:00
|
|
|
{% endif %}
|
|
|
|
|
2024-10-22 01:18:37 -07:00
|
|
|
|
|
|
|
|
2024-10-21 07:55:17 -07:00
|
|
|
<form action="" method="post">
|
|
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{{ points }}
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</html>
|