-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.47 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Form</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.min.js"></script>
</head>
<body>
<div class="container">
<div class="form-wrapper">
<div class="logo">
<img src="./images/dribble.png" />
</div>
<div class="heading">Sign Up</div>
<form action="" class="signup">
<div class="name-wrapper">
<label>NAME</label>
<input type="text" id="name" name="name" placeholder="Ruphaa" />
</div>
<div class="username-wrapper">
<label>USERNAME</label>
<input type="text" id="username" name="username" placeholder="Ruuug" />
</div>
<div class="email-wrapper">
<label>EMAIL</label>
<input type="text" id="email" name="email" placeholder="thanos@is.boss" />
</div>
<button class="register">Create Account</button>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>