You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
756 B
Cheetah
22 lines
756 B
Cheetah
{{define "nav" -}}
|
|
<nav>
|
|
<div>
|
|
<a href='/'>Home</a>
|
|
{{ if .IsAuthenticated }}
|
|
<a href='/snippet/create'>Create snippet</a>
|
|
{{ end }}
|
|
</div>
|
|
<div>
|
|
{{ if .IsAuthenticated }}
|
|
<form action='/user/logout' method='POST'>
|
|
<!-- Include the CSRF token -->
|
|
<input type='hidden' name='csrf_token' value='{{.CSRFToken}}'>
|
|
<button>Logout</button>
|
|
</form>
|
|
{{ else }}
|
|
<a href='/user/signup'>Signup</a>
|
|
<a href='/user/login'>Login</a>
|
|
{{ end }}
|
|
</div>
|
|
</nav>
|
|
{{- end}} |