-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
86 lines (79 loc) · 4.24 KB
/
registration.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<title>Welcome to Live messaging app</title>
</head>
<body>
<div class="container-fluid">
<div class="jumbotron mt-5">
<div class="row justify-content-md-center">
<div class="col-5">
<h1 class="display-4 mb-3">Open an account</h1>
<h3 class="display-7 mb-5">Join to our platform and connect with more friends</h3>
<div class="alert alert-danger mb-4" role="alert" id="errorBox" style="display: none;">
! Error happens
</div>
<form class="needs-validation" novalidate>
<div class="form-group row mb-3">
<div class="form-group col-md-6">
<label for="fullName">Full Name</label>
<input type="text" class="form-control" name="name" id="fullName"
placeholder="Enter your full name here" required>
<div class="invalid-feedback">
Please provide a Full name.
</div>
</div>
<div class="form-group col-md-6">
<label for="fullName">Alias Name (optional)</label>
<input type="text" class="form-control" name="aliasName" id="aliasName"
placeholder="Enter your alias name here">
</div>
</div>
<div class="form-row row mb-3">
<div class="form-group col-md-6">
<label for="inputEmail4">Email</label>
<input type="email" class="form-control" name="email" id="inputEmail4"
placeholder="Email" required>
<div class="invalid-feedback">
Please provide a valid email.
</div>
</div>
<div class="form-group col-md-6">
<label for="inputPassword4">Password</label>
<input type="password" class="form-control" name="password" id="inputPassword4"
placeholder="Password" required>
<div class="invalid-feedback">
Please provide a valid password.
</div>
</div>
</div>
<div class="form-group mb-4">
<label for="inputAddress">Address</label>
<input type="text" class="form-control" name="address" id="inputAddress"
placeholder="1234 Main St" required>
<div class="invalid-feedback">
Please provide a valid address.
</div>
</div>
<button type="submit" class="btn btn-primary">Sign up</button>
</form>
<p class="lead mt-4">
Already have an account? Go back to <a href="login.html">LOGIN</a> page
</p>
</div>
</div>
</div>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
<script src="./scripts/registration.js"></script>
</body>
</html>