-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 3.96 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
51
52
53
54
55
56
57
58
59
60
<!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>Lab 2 - ITITIU19228</title>
<link rel="stylesheet" href="main.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css" integrity="sha512-10/jx2EXwxxWqCLX/hHth/vu2KY3jCF70dCQB8TSgNjbCVAC/8vai53GfMDrO2Emgwccf2pJqxct9ehpzG+MTw==" crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</head>
<body>
<main class="main-container row min-vh-100 min-vw-100">
<div class="register-container col d-flex justify-content-center align-items-center">
<form class="d-flex justify-content-center align-items-center flex-column p-5 position-relative" method="POST" action="signup_submit.jsp">
<div class="ballon__circle position-absolute"></div>
<div class="ballon__circle ballon__circle--t position-absolute"></div>
<h2 class="form_title fs-1 fw-bold pb-5">Create Account</h2>
<div class="form__icons">
<img class="form__icon" src="./public/icons/facebook.svg" alt="">
<img class="form__icon" src="./public/icons/twitter.svg">
<img class="form__icon" src="./public/icons/linkedin.svg">
</div>
<span class="form__span mt-4 mb-1 fs-6 fw-light text-muted">or use email for registration</span>
<input class="form__input" type="text" placeholder="Name">
<input class="form__input" type="text" placeholder="Email">
<input class="form__input" type="password" placeholder="Password">
<button class="form__button button mt-5 fw-bold d-flex justify-content-center align-items-center gap-2"><img src="./public/icons/unlock.svg" alt="signup">SIGN UP</button>
</form>
</div>
<div class="login-container col d-flex justify-content-center align-items-center">
<form class="login-form p-5" method="POST" action="login_submit.jsp">
<header class="text-center">
<h1 class="fw-bold text-capitalize mb-3">Log In</h1>
<p class="text-muted fs-6 fw-light">login here using your username and password</p>
</header>
<div class="field-set">
<div class="bg-white rounded rounded-3 p-2 d-flex flex-nowrap">
<span class="px-2"><i class="fa fa-user-circle"></i></span>
<input class="form-input" type="text" placeholder="username" required>
</div>
<div class="bg-white rounded rounded-3 p-2 mt-2 d-flex flex-nowrap">
<span class="px-2"><i class="fa fa-key"></i></span>
<input class="form-input" type="password" placeholder="password" name="password" required>
</div>
<div class="d-flex justify-content-between align-items-end py-5">
<span class="bg-transparent text-muted fw-light fs-6 cursor-pointer">Forgot password?</span>
<button class="login-button rounded rounded-3 py-2 px-4 cursor-pointer text-center text-uppercase d-flex justify-content-center align-items-center gap-1 fw-bold"><img src="./public/icons/login.svg" alt="signup">LOG IN</button>
</div>
</div>
</form>
</div>
</main>
</body>
</html>