-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
41 lines (41 loc) · 2.05 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign Up - Bonobo.care</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="login-style.css">
</head>
<body style="background-color: #ff8623">
<div style="margin: auto">
<div class="container-xxl bd-gutter mt-3 my-md-4 bd-layout" style="width: 325px; background-color: white; border: 1px solid #ced4da; border-radius: 0.25rem">
<form style="padding: 1rem; text-align: center">
<div class="container">
<img style="width: 6rem" src="img/logo-shadow.png" />
</div>
<div class="form-group">
<label for="formGroupExampleInput"><h3><b>Welcome to Bonobo!</b></h3></label>
<p>First, we need a few details for your account...</p>
</div>
<div class="form-group" style="text-align: left">
<label for="inputUsername">Username</label>
<input type="username" class="form-control" placeholder="Username" required>
</div>
<div class="form-group" style="text-align: left">
<label for="inputPassword">Password</label>
<input type="password" class="form-control" placeholder="Password" required>
</div>
<div class="form-group" style="text-align: left">
<label for="inputPassword">Confirm password</label>
<input type="password" class="form-control" placeholder="Confirm password" required>
</div>
<div class="form-group">
<a type="button" class="btn btn-primary btn-block" href="end.html">Register</a>
</div>
</form>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</html>