summaryrefslogtreecommitdiff
path: root/week-7/Final4/blog/views/welcome.html
blob: 64f592929d5425d049b351c4415a227f16f7c908 (plain)
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
<!DOCTYPE html>

<html>
  <head>
    <title>Welcome</title>
    <style type="text/css">
      .label {text-align: right}
      .error {color: red}
    </style>

  </head>

  <body>
    Welcome {{username}}
<p>
<ul>
<li><a href="/">Goto Blog Home</a></li>
<li>
<a href="/logout">Logout</a>
</li>
<li>
<a href="/newpost">Create a New Post</a>
</li>


  </body>

</html>