login.tpl.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{{template "prelude.tpl.html" .}}

<title>TAP - Login To TAP</title>
</head>
<body>
    <header class="container-fluid">
        {{ template "header.tpl.html" .}}
    </header>
<main class="container">

    	<form action="/login" method="post">
				<input type="text" name="username" placeholder="username" required />
				<input type="password" name="password"  required />
				<button>Sign In</button>
		</form>

</main>
{{template "footer.tpl.html" .}}
</body>
</html>