iris/_examples/routing/overview-2/views/user/create_verification.html
Gerasimos (Makis) Maropoulos ed45c77be5 reorganization of _examples and add some new examples such as iris+groupcache+mysql+docker
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
2020-06-07 15:26:06 +03:00

23 lines
556 B
HTML

<html>
<head><title>Create verification</title></head>
<body>
<h1> Create Verification </h1>
<table style="width:550px">
<tr>
<th>Username</th>
<th>Firstname</th>
<th>Lastname</th>
<th>City</th>
<th>Age</th>
</tr>
<tr>
<td>{{ .Username }}</td>
<td>{{ .Firstname }}</td>
<td>{{ .Lastname }}</td>
<td>{{ .City }}</td>
<td>{{ .Age }}</td>
</tr>
</table>
</body>
</html>