blob: 7c56c2f89cbe0f92f246a0f24f7d7e157daea7eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<% include ../partials/header %>
<div id="login">
<form>
<div>
<label for="username">username</label>
<input type="text" id="login-username" name="username">
</div>
<div>
<label for="password">password</label>
<input type="password" id="login-password" name="password">
</div>
<div>
<label for="login-submit"></label>
<button id="login-submit">LOGIN</button>
</div>
</form>
</div>
<% include ../partials/footer %>
|