14 lines
490 B
Cheetah
14 lines
490 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h2> Your account data</h2>
|
|
<p> Hello <b>{{ .Name }} {{ .Surname }}</b></p>
|
|
<p>You gender is <b>{{ .Gender }}</b></p>
|
|
<p>You <b>{{ .YearsOld }}</b> years old</p>
|
|
<p>You now live in <b>{{ .City }}</b></p>
|
|
<p>You interests is: <b>{{ .Interests }}</b></p>
|
|
|
|
<input type="button" onclick="location.href='/list';" value="User list" />
|
|
<input type="button" onclick="location.href='/logout';" value="Logout" /><br />
|
|
</body>
|
|
</html> |