-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (83 loc) · 3.69 KB
/
index.html
File metadata and controls
105 lines (83 loc) · 3.69 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
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
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./assets/style.css">
<title>Document</title>
</head>
<body class="cover-in">
<!-- main container -->
<div class="wrapper">
<div class="logo">
<p>[LOGO]</p>
</div>
<!-- login form block -->
<div class="main fade-in">
<!-- from welcome to the buttons -->
<div class="form-area">
<div class="welcome">
<h1> <span class="first">Welcome </span>Folk</h1>
<p class="description">Lorem ipsum dolor sit!</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="real-form">
<!-- <h2>LOGIN</h2> -->
<!-- html form starts here -->
<form name="login" action="" method="" target="">
<!-- animated input box -->
<div class="group top">
<input class="text-area" type="text" name="username" required>
<div class="line"></div>
<label>Username</label>
</div>
<!-- animated input box -->
<div class="group top bottom">
<input class="text-area" type="password" name="password" required>
<div class="line"></div>
<label>Password</label>
</div>
<!-- remember me and forgot password -->
<div class="block">
<div>
<input class="check" type="checkbox"><label>Remember Me</label>
</div>
<div>
<p><a href="#">Forgot Password?</a></p>
</div>
</div>
<!-- login and register button -->
<div class="buttons">
<div class="sign">
<p>Sign In</p>
<input class="submitbutton" type="submit" value="⇀"">
</div>
<div class="different">
<a href="register.html">Register</a>
</div>
</div>
</form>
<!-- html form ends here -->
</div> <!-- loginform ends here -->
</div> <!-- loginarea ends here -->
</div> <!-- login ends here -->
<!-- right block: contains nav bar and headlines -->
<div class="show">
<nav class="fade-in"> <!-- fade-in for animation -->
<ul>
<li><a href="#">ABOUT</a></li>
<li><a href="#">CONTACT US</a href="#"></li>
<li><a href="#">BLOG</a href="#"></li>
<li><a href="#">LOREM</a href="#"></li>
</ul>
</nav>
<!--[class:new] headline: social platform for JEC -->
<div class="new fade-in"> <!-- fade-in for animation -->
<p class="fade-in">Lorem, ipsum dolor</p>
<span>Jorhat Engineering College</span>
</div>
</div> <!-- show ends here -->
</div> <!-- wrapper ends here -->
</body>
</html>