woodpecker/pkg/template/pages/login.html

28 lines
705 B
HTML
Raw Normal View History

2014-02-07 10:10:01 +00:00
{{ define "title" }}Login · drone.io{{ end }}
{{ define "content" }}
<h1>Login</h1>
<div>
<input type="email" name="username" placeholder="Email address" autocomplete="off" spellcheck="false" class="form-control" />
2014-02-07 10:10:01 +00:00
<input type="password" name="password" placeholder="Password" class="form-control" />
</div>
<div>
<input type="submit" value="Sign in" />
</div>
<div>
{{ if .Settings.OpenInvitations }}
<a href="/signup">request invitation</a> | <a href="/forgot">forgot password</a>
{{ else }}
2014-02-07 10:10:01 +00:00
<a href="/forgot">forgot password</a>
{{ end }}
2014-02-07 10:10:01 +00:00
</div>
{{ end }}
{{ define "script" }}
2014-03-06 12:35:57 +00:00
<script>
$(function() {
$("input").first().focus()
})
</script>
{{ end }}