-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (50 loc) · 2.44 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
48
49
50
<!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">
<title>Welcome to the Micro-Blogger</title>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/4.8.95/css/materialdesignicons.min.css">
<link rel="icon" href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4wuJA-gLhxijvORx-YRQM8fm0VzCsoaRrfA&usqp=CAU">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/login.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="logSign.js"></script>
</head>
<body>
<main>
<div class="container-fluid">
<div class="row">
<div class="col-sm-6 login-section-wrapper">
<div class="brand-wrapper">
<img src="assets/images/logo.jpeg" alt="logo" class="logo">
</div>
<div class="login-wrapper my-auto">
<h1 class="login-title">Log in</h1>
<form action="#!">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" class="form-control" placeholder="Enter your username">
</div>
<div class="form-group mb-4">
<label for="password">Password</label>
<input type="password" name="password" id="password" class="form-control" placeholder="Enter your passsword">
</div>
<input name="login" id="login" class="btn btn-block login-btn" type="button" value="Login" onclick="log()">
</form>
<p class="login-wrapper-footer-text">Don't have an account? <a href="signup.html" class="text-reset">Register here</a></p>
</div>
</div>
<div class="col-sm-6 px-0 d-none d-sm-block">
<img src="assets/images/login.jpeg" alt="login image" class="login-img" height=20px width= 100px>
</div>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>