-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
28 lines (27 loc) · 1.31 KB
/
login.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="icon" href="Bloggerzz icon.png">
<link href="styles.css" rel="stylesheet" type="text/css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
</head>
<body>
<div class="register-page">
<div class="d-grid gap-2 col-6 mx-auto" id="register-page">
<img src="Bloggerzz icon.png" style="width:100px;border-radius:50%;margin:10px;display: flex;
justify-self: center;">
<h1>Login</h1>
<input type="text" placeholder="Username or Email" id="usermail" class="form-control"/>
<input type="password" placeholder="Password" id="pass" class="form-control"/>
<button id="login" onclick="loginUser()" class="btn btn-primary">Login</button>
<h6>Not registered yet? <a href="index.html">Register here</a></h6>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase.js"></script>
<script src="firebase.js"></script>
</body>
</html>