23 lines
645 B
Cheetah
23 lines
645 B
Cheetah
{{define "nav"}}
|
|
<nav>
|
|
<div>
|
|
<a href='/'>Home</a>
|
|
<a href='/about'>About</a>
|
|
{{if .IsAuthenticated}}
|
|
<a href='/snippet/create'>Create snippet</a>
|
|
{{end}}
|
|
</div>
|
|
<div>
|
|
{{if .IsAuthenticated}}
|
|
<a href='/account/view'>Account</a>
|
|
<form action='/user/logout' method='POST'>
|
|
<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}} |