-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.86 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
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auth Demo</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.5.0/mdb.min.css"
rel="stylesheet"
/>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.5.0/mdb.min.js"
></script>
<link href="./index.css" rel="stylesheet" />
</head>
<body class="d-flex justify-content-center p-5">
<div class="card">
<div class="card-header">
<h3>Login Form</h3>
</div>
<form id="loginForm" class="card-body px-5 py-4">
<label class="custom-field">
<input type="text" class="input" required />
<span class="placeholder">Email Id</span>
</label><br />
<label class="custom-field">
<input type="password" class="input" required />
<span class="placeholder">Password</span>
</label><br /><br/>
<button type="submit" class="btn btn-primary">Login</button>
</form>
<button style="width: 20%; margin-left: 50px;" id="Redirect">Sign-Up</button>
</div>
<script type="module" src="firebase.js"></script>
<script type="module" src="index.js"></script>
</body>
</html>