go-sample-webpage/pkg/user/templates/register.tmpl

9 lines
460 B
Cheetah
Raw Normal View History

2021-11-09 18:23:19 +00:00
<form method="post">
<label>E-Mail</label>
<input type="text" name="email" class="form-control" placeholder="E-Mail"></input>
<label>Username</label>
<input type="text" name="username" class="form-control" placeholder="Username"></input>
<label>Password</label>
<input type="password" name="password" class="form-control" placeholder="Password"></input>
2021-11-22 22:11:37 +00:00
<input type="submit" class="btn btn-success" value="Register"></input>
2021-11-09 18:23:19 +00:00
</form>