-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpractical-14.html
90 lines (77 loc) · 3 KB
/
practical-14.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical-14</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="practical-14.css">
</head>
<body>
<h1>FORM TEMPLATES</h1>
<div id="templates">
<div id="login">
<div class="top">
<h2>Log in</h2>
<div class="social-links">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google"></i></a>
</div>
</div>
<div class="mid">
<form method="GET">
<input type="text" placeholder="Your email">
<br><br>
<input type="password" placeholder="Your password">
</form>
<a href="#">Forgot password!</a>
<br>
</div>
<div class="bottom">
<a class="btn" href="#">Log in</a>
<p>Don't have an account? <a href="#">Sign up</a></p>
</div>
</div>
<div id="signup">
<h2>Sign up</h2>
<div class="mid">
<form method="GET">
<input type="text" placeholder="Your email">
<br><br>
<input type="password" placeholder="Your password">
</form>
<input type="checkbox">
<p>Accept the <a href="#">Terms and Conditions</a></p>
</div>
<div class="bottom">
<a class="btn" href="#">Sign up</a>
<p>Have an account? <a href="#">Log in</a></p>
</div>
<div class="footer">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google"></i></a>
</div>
</div>
<div id="signin">
<h2>Sign in</h2>
<div class="mid">
<form method="GET">
<input type="text" placeholder="Your email">
<br><br>
<input type="password" placeholder="Your password">
</form>
<a href="#">Forgot password!</a>
</div>
<p class="first-p"><a href="#">Sign in</a></p>
<p class="second-p">or sign in with</p>
<div class="footer">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google"></i></a>
</div>
</div>
</div>
</body>
</html>