-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
39 lines (37 loc) · 1.09 KB
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!--
<doctype html!>
<html>
<head>
<meta charset="utf-8"/>
<title>User login/logout with datastore</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
{% if user %}
<p>{{ welcome }} {{ user.email() }} welcome to the application</p>
{% else %}
<p>Hello Guest. Welcome to the application</p>
{% endif %}
<p>You can {{ url_string }} <a href= '{{ url }}'>here.</a></p>
</body>
</html> -->
<html>
<head>
<meta charset="utf-8"/>
<title>User login/logout with datastore</title>
</head>
<body>
{% if user %}
{{ welcome }} {{ user.email() }} welcome to the application<br/>
Below you will find your details as currently entered into the system<br/>
<br/>
Name: {{ myuser.name }}<br/>
Age: {{ myuser.age }}<br/>
<br/>
To update your information <a href="/edit">click here</a>
{% else %}
<p>Hello guest welcome to the application</p>
{% endif %}
<p>you can {{ url_string }} <a href='{{ url }}'>here</a></p>
</body>
</html>