-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLog_In.html
114 lines (104 loc) · 4.89 KB
/
Log_In.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
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/login.css">
</head>
<body class="landing">
<!-- Header -->
<header id="header" class="nav-color">
<h1><a href="index.html"><span>AASCA</span></a></h1>
<nav id="nav">
<ul>
<li ><a href="index.html"><span>Home</span></a></li>
<li><a href="about.html"><span>About</span></a></li>
<li><a href="faq.html"><span>FAQ</span></a></li>
<li><a href="SIGN_UP.html" class="button special button-hover">Sign Up</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="wrapper" style="background-color: #f5f4f4" >
<div class="container">
<header class="major heading-padding">
<h2>LOG IN</h2>
</header>
<section class="container1">
<form method="post" action="#">
<div class="row uniform 50% " >
<div class="6u$ 12u$(4)">
<b>Email</b>
<input type="email" name="email" id="email" value="" placeholder="Email" required />
</div>
<div class="6u$ 12u$(4)">
<b>Password</b>
<input type="password" name="password" id="password" value="" placeholder="password" required />
</div><br><br>
<div class="6u$ 12u$(3)">
<input type="checkbox" id="human" name="remenber" checked>
<label for="human">Remember Me</label>
</div><br><br>
<div class="12u$">
<ul class="actions">
<li><input type="submit" value="Sign In" class="special" /></li>
</ul>
</div>
</div>
</form>
</section>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="row">
<div class="8u 12u$(medium)">
<ul class="copyright">
<li>© CodeBlooded, 2019.</li>
<li><a href="about.html">About us</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="#">Terms & Conditions</a></li>
</ul>
</div>
<div class="4u$ 12u$(medium)">
<ul class="icons">
<li>
<a class="icon rounded fa-facebook"><span class="label">Facebook</span></a>
</li>
<li>
<a class="icon rounded fa-twitter"><span class="label">Twitter</span></a>
</li>
<li>
<a class="icon rounded fa-google-plus"><span class="label">Google+</span></a>
</li>
<li>
<a class="icon rounded fa-linkedin"><span class="label">LinkedIn</span></a>
</li>
</ul>
</div>
</footer>
</body>
</html>