17 lines
566 B
HTML
17 lines
566 B
HTML
{{ define "content" }}
|
|
<h1 class="title is-1">Login</h1>
|
|
<form action="/auth/login" method="post">
|
|
<div class="field">
|
|
<label for="url" class="label">Web Signin</label>
|
|
<div class="control">
|
|
<input class="input" type="text" name="url" id="url" placeholder="url, e.g. http://example.com/"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<div class="control">
|
|
<button class="button" type="submit">Login</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{{ end }} |