i hate israel

This commit is contained in:
frosty
2026-01-12 16:57:57 -05:00
parent 5cea377934
commit 63376af86f
10 changed files with 289 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<title>{{ self.title() }}</title>
<link rel="stylesheet" href="/static/index.css">
</head>
<body>
{% include "header.html" %}

View File

@@ -1,6 +1,25 @@
<header>
<ul class="nav">
<li><a href="/">Home</a></li>
<li><a href="/personnel">Personnel</a></li>
<li><a href="/clients">Clients</a></li>
<li><a href="/tickets">Tickets</a></li>
<li><a href="/inventory">Inventory</a></li>
<!- not logged in>
<!--
<li class="right"><a href="/login">Sign in</a></li>
!-->
<!- logged in>
<li class="right">
<img class="pfp" src="/static/usericon.png">
<a>John Doe</a>
</li>
</ul>
</header>

14
templates/login.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<form class="login-form" action_url="/login" method="POST">
<label for="email">Email: </label>
<input name="email" type="email"></input>
<br>
<label for="password">Password: </label>
<input name="password" type="password"></input>
<input type="submit">
</form>
{% endblock %}