-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
101 lines (71 loc) · 3.17 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sign_system</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&family=Roboto:wght@100&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section>
<div class="container box ">
<div class="row w-100">
<div class="col-5">
<div class="row pt-5">
<div class="col-6">
<h1 class="company pl-5"> <span class="com">Com</span>Pany</h1>
</div>
<div class="col-6 d-flex pl-5 pt-2">
<h5 class="head-sign"> LOGIN </h5>
<h5 class="sign-up-page">SIGNUP</h5>
</div>
</div>
<div class="pl-5"
style="display:flex; justify-content:center; height: 100%; align-items: left; flex-direction: column; ">
<h1 class="login">SIGN UP</h1>
<p>Sign up to continue to our application </p>
<form>
<div class="form-group">
<input type="text" class="inp no-outline pt-4" placeholder="Name ">
</div>
<div class="form-group">
<input type="password" placeholder="Email" class=" inp no-outline pt-4" id="exampleInputPassword1">
</div>
<div class="form-group">
<input type="password" placeholder=" .........." class=" inp no-outline pt-4"
id="exampleInputPassword1">
</div>
<div class="form-group form-check pt-4">
<input type="checkbox" class="form-check-input " id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">
<p class="check"> By clicking sign up, You agree to our Terms of use and knowledge that you have read
our Privacy Policy</p>
</label>
</div>
<button type="submit" class="btn btn-col"><span class="log-txt-for">Signup</span></button>
</form>
<!-- <form>
<div>
<input type="text" placeholder="Username/Email"
style="display: flex; padding-top: 1rem;">
<p>Input field without outline:</p>
<input type="text" class="no-outline" placeholder="..........">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>-->
</div>
</div>
<div class=" col-7">
<img src="./assets/images/signup.svg" alt="" class="login-img">
</div>
</div>
</div>
</div>
</section>
</body>
</html>