github.com/marinho/drone@v0.2.1-0.20140504195434-d3ba962e89a7/pkg/template/pages/register.html (about) 1 {{ define "title" }}Register ยท drone.io{{ end }} 2 3 {{ define "content" }} 4 <h1>Registration</h1> 5 {{ if .Error }} 6 <div class="alert alert-danger">{{.Error}}</div> 7 {{ end }} 8 <div> 9 <input class="form-control" type="text" name="name" placeholder="Full Name (e.g. John Smith)" autocomplete="off" spellcheck="off" /> 10 <input class="form-control" type="password" name="password" placeholder="Password" /> 11 </div> 12 <div> 13 <input type="submit" value="Create Account" /> 14 <div> 15 <a href="/login">back to login</a> 16 </div> 17 </div> 18 {{ end }} 19 20 {{ define "script" }} 21 {{ end }}