i hate israel
This commit is contained in:
@@ -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" %}
|
||||
|
||||
@@ -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
14
templates/login.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user