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>Authenticate with IndieAuth - Senary</title>
</head>
<body>
    <header class="container-fluid">
        {{ template "header.tpl.html" .}}
    </header>
<main class="container-fluid repomain">

    	<form action="/login" method="post">
				<input type="text" name="profile" placeholder="yourdomain.com" required />
				<button>Sign In</button>
		</form>

</main>
<footer>
</footer>
</body>
</html>