-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.html
More file actions
67 lines (63 loc) · 1.74 KB
/
Copy pathsignup.html
File metadata and controls
67 lines (63 loc) · 1.74 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
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
<!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">
<title>Signup Form</title>
<link rel="stylesheet" href="./resourses/style.css">
<link rel="icon" href="./resourses/icon.jpeg">
<style>
.sign-up-form{
width: 300px;
box-shadow: 0 0 3px 0 rgba(0,0,0,0.3);
background: #fff;
padding: 20px;
margin: 8% auto 0;
text-align: center;
}
.sign-up-form h1{
color: #122bea;
margin-bottom: 30px;
}
.input-box{
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 80%;
border: 1px solid #999;
outline: none;
}
button{
background-color: rgb(75, 200, 75);
color: #fff;
width: 80%;
padding: 10px;
border-radius: 20px;
font-size: 15px;
margin: 10px 0;
border: none;
outline: none;
cursor: pointer;
}
.google-btn{
background-color: #5ab9d8;
}
</style>
</head>
<body>
<div class="sign-up-form">
<h1>Sign Up Now</h1>
<form name="frmContact" method="post" action="contact.php">
<input type="email" class="input-box" placeholder="Your Email" name="txtEmail" id="txtEmail">
<input type="password" class="input-box" placeholder="Your Password" name="txtpass" id="txtpass">
<p><span><input type="checkbox"></span>I agree to the terms of services</p>
<button type="submit" class="sign-btn">Sign Up</button>
<hr>
<p class="or">OR</p>
<button type="button" class="google-btn">Log in with Google</button>
<p>Do you have an account ? <a href="#">Sign in</a></p>
</form>
</div>
</body>
</html>