-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
70 lines (66 loc) · 2.42 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/styles.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>ValenMine - Join us today!</title>
</head>
<body>
<main>
<section class="create">
<div class="left-content">
<div class="home">
<a href="index.html"><i class="fa fa-angle-left fa-2x"></i></a>
</div>
<div class="content">
<img src="./images/Mobile login-bro.png" alt="create" />
<h2>Create an Account with us today.</h2>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sapiente
omnis neque, expedita quidem error molestiae aspernatur, vel
dignissimos repellendus unde sunt ipsa commodi libero dolor itaque
obcaecati asperiores enim sit.
</p>
</div>
</div>
<div class="right-content">
<form id="my-form" novalidate>
<div class="container">
<div class="form-group">
<h1>Create an Account</h1>
<div id="msg" class="error"></div>
<div class="form-control">
<label>Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="form-control">
<label>Number</label>
<input type="text" name="number" id="number" />
</div>
<div class="form-control">
<label>Email Address</label>
<input type="email" name="email" id="email" />
</div>
<div class="form-control">
<label>Password</label>
<input type="password" name="password" id="password" />
</div>
<div class="submit">
<input type="submit" value="Create Account" />
</div>
</div>
</div>
<p>Already have an account? <a href="login.html">Login here</a></p>
</form>
</div>
</section>
</main>
<script src="./script.js"></script>
</body>
</html>