-
Notifications
You must be signed in to change notification settings - Fork 1
/
name.html
51 lines (46 loc) · 1.9 KB
/
name.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
<!DOCTYPE html>
<html>
<head>
<title>SwampHacks - Update Name</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/create-account.css">
<link rel="stylesheet" type="text/css" href="css/resume.css">
<link rel="stylesheet" type="text/css" href="css/account.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
</head>
<body>
<div class="container">
<section id="image-header">
<a href="http://swamphacks.com">
<img class="back" src="img/back-arrow.png" class="logo" />
<img class="logo" src="img/logo.png" class="logo" />
</a>
</section>
<section id="thankyou-header">
<h3>Hi there!</h3>
<p>We noticed that we don't have your first and last name in our system.</p>
<p>Please provide us with that info so we can have record of it. Thanks!</p>
</section>
<section class="name">
<form id="form">
<div class="row">
<input type="text" class="form-control" placeholder="Albert Gator" aria-describedby="basic-addon1" id="name" style="margin-top: 15px;">
<p class="error" style="color: red; text-align: left; margin-top: 20px;"></p>
</div>
<div id="submit" style="text-align: center;">
<a class="btn btn-default" id="submit-name">SUBMIT</a>
</div>
</form>
</section>
</div>
<!-- scriptz -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.5.3/firebase.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.3/toastr.min.js"></script>
<script src="js/keys.js"></script>
<script src="js/account.js"></script>
</body>
</html>