-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
29 lines (29 loc) · 1.04 KB
/
dashboard.html
File metadata and controls
29 lines (29 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Intake</title>
<link rel="stylesheet" href="./lib/stylesheets/application.css">
</head>
<body>
<div class="main">
<div class="header dashboard">
<p></p>
<p>Welcome, Ellen Cornelius</p>
<p><a href="index.html" id="logout-button"><button class="linkbutton" type="button" name="logout">Logout</button></a></p>
</div>
<div class="subheader">
<p>Select Questionnaire to begin:</p>
</div>
<div class="dashboard-box">
<div class="new questionnaire">
<img src="./lib/stylesheets/form.png" alt="form icon">
<input id="form-title" type="text" name="" placeholder="Enter Title">
<a href="intake.html"><button class="create-form linkbutton"type="button" name="new" id="2">Create</button></a>
</div>
</div>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="bundle.js"></script>
</body>
</html>