-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
38 lines (34 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="signup.css">
<link rel="stylesheet" type="text/css" href="nav.css">
<title>Sign up</title>
</head>
<body>
<div class="first-page-container">
<div class="nav">
<div class="service"><a href="service.html">Үйлчилгээ</a></div>
<div class="prize"><a href="prizes.html">Урамшуулал</a></div>
<div class="Help"><a href="help.html">Тусламж</a></div>
<div class="Signup"><a href="signup.html">Нэвтрэх</a></div>
</div>
<div class="sign-up-form">
<h1>Sign Up Now</h1>
<form>
<input type="email" class="input-box" placeholder="Your Email">
<input type="password" class="input-box" placeholder="Your Password">
<p><span><input type="checkbox"></span>I agree to the terms of services</p>
<button type="button" class="signup-btn">Sign Up
</button>
<hr>
<p class="or">OR</p>
<button type="button" class="twitter-btn">Login with twitter</button>
<p> Do you have an account ?<a href="#">Sign in</a></p>
</form>
</div>
</div>
</body>
</html>