aboutsummaryrefslogtreecommitdiff
path: root/views/dashboard.ejs
blob: b4dec17ddaa0515b886b7409a526c80fc69ad18d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>bnbAIM Dashboard</title>
</head>
<body>
    <div class="background"></div>
    <div class="container">
        <h1>Welcome, <%= username %>!</h1>
        <h2>Screen Name: <%= aim_username %></h2>
        <a href="/password" class="button">Change Password</a>
        <a href="/logout" class="button logout">Logout</a>
    </div>
</body>
</html>