-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.8 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.8 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
<!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 href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="loginStyles.css">
<link rel="icon" href="/img/logo1.png">
<script src="main.js"></script>
<title>Skip The Books</title>
</head>
<body>
<header class="full-screen-header">
<nav class="nav nav-top">
<img class="logo" src="img/logo1.png" alt="Product Logo">
<ul class="nav-list">
<li><a href="">Home</a></li>
<li><a href="">Restaurants</a></li>
<li><a href="">My Schedule</a></li>
<li><a href="">My Profile</a></li>
</ul>
</nav>
<h1 class="title">SKIP THE BOOKS</h1>
<span class="sub-title">Work more efficiently with food</span>
<img class="scroll-down-icon" src="img/arrow_down.svg" alt="Scroll Down Icon">
</header>
<main>
<section class="section">
<div class="main">
<p class="sign" align="center">Sign In</p>
<form class="form1" action="./home.html">
<input id="usernameInput" class="un" type="text" align="center" placeholder="Username">
<input id="passwordInput" class="pass" type="password" align="center" placeholder="Password">
<a class="submit" type="submit" align="center" onclick="signInUser(document.getElementById('usernameInput').value, document.getElementById('passwordInput').value)">Sign In</a>
<p class="forgot" align="center"><a href="#">Forgot Password?</p>
<p align="center"><a href="signUp.html">Not a User?</p>
</form>
</div>
</main>
</body>
</html>