diff options
Diffstat (limited to 'week-7/Final4/blog/views/welcome.html')
| -rw-r--r-- | week-7/Final4/blog/views/welcome.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/week-7/Final4/blog/views/welcome.html b/week-7/Final4/blog/views/welcome.html new file mode 100644 index 0000000..64f5929 --- /dev/null +++ b/week-7/Final4/blog/views/welcome.html @@ -0,0 +1,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> |
