-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
28 lines (27 loc) · 981 Bytes
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<title>Carrots</title>
<script src="signup.js"></script>
</head>
<body class="grasslandbg">
<div class="wrap">
<h3 class="abovelogo">Sign Up</h3>
<img class="logo" src="finalbunnylogo.png" alt="logo of bunny with a carrot">
<div class="form">
<form>
<p id="error"></p>
<label>Your Name</label>
<input type="text" id="parentname">
<label>Your Child's Name</label>
<input type="text" id="childname">
<label>Password</label>
<input type="text" id="password">
</form>
<button onclick="getinfo()" id="button" class="btn btn-primary btn-lg blue">Submit</button>
</div>
</div>
</body>
</html>