-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.87 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>KEDU - The Educational Community and Curriculum Platform</title>
<meta name="description" content="KUBO Education, KEDU for short, is KUBO’s online curriculum platform"/>
<meta name="keywords" content="KUBO Robotics, KUBO, KUBO Education, KEDU, Teachers, Students,
Learning Platform">
<link rel="stylesheet" href="assets/css/styles.css">
<script defer src="assets/js/login.js"></script>
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/images/favicon/safari-pinned-tab.svg" color="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400" rel="stylesheet">
</head>
<body class="login">
<header>
<div class="logo">
<a href="index.html"><img src="assets/images/kedulogo.png" alt="logo"></a>
</div>
</header>
<section class="login">
<form id="login">
<label>Email</label>
<br>
<input id="userEmail" type="email" placeholder="Enter Email" value="" required/>
<br>
<label>Password</label>
<br>
<input id="userPassword" type="password" placeholder="Enter Password" value="" required/>
<br>
<input class="loginbutton" type="submit" value="LOGIN" onclick="check()"/>
</form>
<button id="signup" onclick="window.location.href='regt.html'">SIGN UP</button>
</section>
</body>
</html>