Create the login screen
This commit is contained in:
parent
c88974788f
commit
447bfc4599
@ -50,6 +50,9 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="/contact">Contact</a>
|
<a class="nav-link" href="/contact">Contact</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" href="/user/login">Login</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
32
templates/login.page.tmpl
Normal file
32
templates/login.page.tmpl
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{{template "base" .}}
|
||||||
|
{{define "content"}}
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<h1>Login</h1>
|
||||||
|
<form>
|
||||||
|
<div class="form-group mt-5">
|
||||||
|
<label for="email">Email:</label>
|
||||||
|
{{with .Form.Errors.Get "email"}}
|
||||||
|
<label class="text-danger">{{.}}</label>
|
||||||
|
{{end}}
|
||||||
|
<input type="text" name="email" id="email" class="form-control {{with .Form.Errors.Get "email"}} is-invalid {{end}}"
|
||||||
|
value="" required autocomplete="off">
|
||||||
|
</div>
|
||||||
|
<div class="form-group mt-5">
|
||||||
|
<label for="password">Password:</label>
|
||||||
|
{{with .Form.Errors.Get "password"}}
|
||||||
|
<label class="text-danger">{{.}}</label>
|
||||||
|
{{end}}
|
||||||
|
<input type="text" name="password" id="password" class="form-control {{with .Form.Errors.Get "password"}} is-invalid {{end}}"
|
||||||
|
value="" required autocomplete="off">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<input type="submit" class="btn btn-primary" value="Submit">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{end}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user