diff options
Diffstat (limited to 'views/dashboard.ejs')
| -rw-r--r-- | views/dashboard.ejs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/views/dashboard.ejs b/views/dashboard.ejs new file mode 100644 index 0000000..b50f0e0 --- /dev/null +++ b/views/dashboard.ejs @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/css/style.css"> + <title>bnbSO Dashboard</title> +</head> +<body> + <div class="background"></div> + <div class="container"> + <img src="img/logo.png" alt="logo" width="200"> + <p>Welcome, <%= username %>!</p> + <p>FreeSO Username:</p> + <a href="#" class="button">Change Password</a> + <a href="#" class="button">Download bnbSO Client</a> + <a href="/logout" class="button logout">Logout</a> + </div> +</body> +</html>
\ No newline at end of file |
