learn-go/snippetbox/ui/html/partials/nav.tmpl

22 lines
547 B
Cheetah
Raw Normal View History

2024-01-23 19:19:53 +00:00
{{define "nav"}}
<nav>
2024-02-07 20:40:54 +00:00
<div>
<a href="/">Home</a>
2024-02-08 06:46:35 +00:00
{{if .IsAuthenticated}}
2024-02-07 20:40:54 +00:00
<a href="/snippet/create">Create Snippet</a>
2024-02-08 06:46:35 +00:00
{{end}}
2024-02-07 20:40:54 +00:00
</div>
<div>
2024-02-08 06:46:35 +00:00
{{if .IsAuthenticated}}
2024-02-07 20:40:54 +00:00
<form action="/user/logout" method="POST">
2024-02-08 07:04:06 +00:00
<input type="hidden" name="csrf_token" value="{{.CSRFToken}}">
2024-02-07 20:40:54 +00:00
<button>Logout</button>
</form>
2024-02-08 06:46:35 +00:00
{{else}}
<a href="/user/signup">Signup</a>
<a href="/user/login">Login</a>
{{end}}
2024-02-07 20:40:54 +00:00
</div>
2024-01-23 19:19:53 +00:00
</nav>
2024-02-08 06:46:35 +00:00
{{end}}