-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../css/index.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="https://kit.fontawesome.com/b28bb7b0be.js" crossorigin="anonymous"></script>
<title>Sign In</title>
</head>
<body>
<h1 class="animate__animated animate__bounce">Multi-Objective Decision Making Application</h1>
<img src="..\assets\logo.png" alt="Logo" class="logo" />
<div class="container">
<h1 class="heading">Sign In</h1>
<form id="login_form">
<input id="email_id" type="email" placeholder="Email" required />
<input id="password" type="password" placeholder="Password" required />
<button type="submit" class="btn btn-primary" value="Sign In">Log In</button>
</form>
<a class="link" href="./pages/forget-password.html">Forgot Password?</a
>
<a class="link" href="./pages/signup.html">Create New Account</a>
</div>
<script src="./js/signin.js" type="module"></script>
</body>
</html>