-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19-account-saved.html
95 lines (83 loc) · 3.15 KB
/
19-account-saved.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!--
Demo Step 18:
Click on Weekly summary (this is just a preview)
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account - Equalify</title>
</head>
<body>
<header>
<nav aria-label="Main">
<ul>
<li><a href="#">Audits</a></li>
<li><a href="#">Pages</a></li>
<li><a href="#">Logs</a></li>
<li><a href="#" aria-current="page">Account</a></li>
</ul>
</nav>
</header>
<main>
<h1>Account</h1>
<div aria-live="polite">"cboyden@berkeley.edu" invited.</div>
<section id="user_settings">
<h2>User Settings</h2>
<button>Logout</button>
<h3>Account Settings</h3>
<form>
<label for="first-name">First Name:</label>
<input type="text" id="first-name" name="first-name" value="Lucy" required>
<label for="last-name">Last Name:</label>
<input type="text" id="last-name" name="last-name" value="Greco" required>
<label for="email">Email Address:</label><br>
<input type="email" id="email" name="email" disabled value="lgreco@berkeley.edu">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<button>Update Account</button>
</form>
<h3>Danger Zone</h3>
<form>
<button>Delete Account</button>
</form>
</section>
<section id="team">
<h2>Team</h2>
<h3>Team Members</h3>
<ul>
<li>Lucy Greco - Owner</li>
<li>Caroline Boyden - Invited - <button>Delete</button> <button>Make Owner</button></li>
</ul>
<h3>Invite New Members</h3>
<form>
<label for="invite-email">Email Address:</label>
<input type="email" id="invite-email" name="invite-email" required>
<button type="submit">Send Invite</button>
</form>
</section>
<section id="billing">
<h2>Billing</h2>
<h3>Current Plan</h3>
<ul>
<li>10,000 Scans Per Month (9,997 remaining)</li>
<li>24 Hour Response Time</li>
<li>$10,0000/yr</li>
<li>$20/mo/user (2 active users)</li>
</ul>
<h3>Manage Billing</h3>
Billing is managed through Stripe.
<button>Visit Stripe</button>
</section>
</main>
<footer>
<section>
<h2>Need help?</h2>
<p>Email <a href="#">support@equalify.app</a>.</p>
</section>
</footer>
</body>
</html>