mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
13 lines
220 B
HTML
13 lines
220 B
HTML
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>Profile of {{.User.Username}}</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<p>
|
||
|
This is the profile of a user with ID: <b>{{.User.ID}}</b> and Username: <b>{{.User.Username}}</b>
|
||
|
</p>
|
||
|
</body>
|
||
|
|
||
|
</html>
|