-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTMLtest.html
61 lines (57 loc) · 2.73 KB
/
HTMLtest.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 4 Signup Form Template Free Code Snippet</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link ref="stylesheet" href="style.css">
</head>
<body>
<div class="signup-page">
<div class="container">
<div class="row">
<div class="col-sm-10 col-lg-6 offset-sm-1 offset-lg-3">
<div class="form-bg">
<a href="#"><img src="/images/logo.png" alt="logo" class="logo"></a>
<h2>Sign up to see photos and videos from your friends.</h2>
<form>
<button class="login-with-fb"><i class="fa fa-facebook-official" aria-hidden="true"></i> Log in with Facebook</button>
<span class="options-divider">OR</span>
<span class="option-br"></span>
<div class="form-group">
<input type="email" name="email" class="form-control" placeholder="Mobile Number or Email">
</div>
<div class="form-group">
<input type="text" name="Full Name" class="form-control" placeholder="Full Name">
</div>
<div class="form-group">
<input type="text" name="Username" class="form-control" placeholder="Username">
</div>
<div class="form-group">
<input type="Password" name="Password" class="form-control" placeholder="Password">
</div>
<div class="form-group">
<button class="signup-btn">Signup</button>
</div>
<p class="term-policy">By signing up, you agree to our <a target="_blank" href="#" rel="noopener noreferrer">Terms</a> , <a target="_blank" href="#" rel="noopener noreferrer">Data Policy</a> and <a target="_blank" href="#" rel="noopener noreferrer">Cookies Policy</a>.</p>
</form>
</div>
<div class="login-link form-bg">
<p>Have a account? <a href="#">Log in</a></p>
</div>
<div class="get-app">
<p>Get the app.</p>
<a href="#"><img src="/images/ios-app-store.png" alt="app"></a>
<a href="#"><img src="/images/google-app-store.png" alt="app"></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>