This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / login.html
378 B 14 lines
1{{define "title"}}login{{end}} 2 3{{define "content"}} 4<h1>login</h1> 5<form method="POST" action="/login"> 6 <label for="handle">handle</label> 7 <input type="text" id="handle" name="handle" required> 8 9 <label for="app_password">app password</label> 10 <input type="password" id="app_password" name="app_password" required> 11 12 <button type="submit">login</button> 13</form> 14{{end}}