-
Notifications
You must be signed in to change notification settings - Fork 3
/
signed-up.html
38 lines (34 loc) · 1.16 KB
/
signed-up.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alt-Text.org</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon/favicon.ico" />
<link rel="stylesheet" href="style/common.css" />
<link rel="stylesheet" href="style/sign-up.css" />
</head>
<body>
<div class="header-wrapper">
<span class="header-contents">
<a class="site-title" href="/">Alt-Text.org</a>
</span>
</div>
<div class="content">
<div class="content-wrapper">
<div class="signed-up-wrapper">
<div class="sign-up-headline">Thank You!</div>
<div class="sign-up-controls">
<button class="big-button" onclick="document.location.href='/'">
Return To Search
</button>
</div>
</div>
</div>
</div>
<div class="footer-wrapper">
<span class="left-footer-links"><a class="footer-link" href="https://github.com/alt-text-org">Code on GitHub</a></span>
<span class="right-footer-links"><a class="footer-link" href="mailto:[email protected]">Contact Us</a></span>
</div>
</body>
</html>