mirror of
https://gitlab.com/nekoya/web.git
synced 2025-01-18 15:20:31 +01:00
Add Home Page
This commit is contained in:
parent
53d60f6bc8
commit
eb005dbb4a
4 changed files with 406 additions and 0 deletions
103
ForgotPassword.html
Normal file
103
ForgotPassword.html
Normal file
|
@ -0,0 +1,103 @@
|
|||
<!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>Forgot Password</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
|
||||
body{
|
||||
--base-color: rgb(56,60,68);
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
.card-2 {
|
||||
background-color: black;
|
||||
margin-top: 4%;
|
||||
margin-bottom: 2%;
|
||||
margin-right: 35%;
|
||||
margin-left: 35%;
|
||||
}
|
||||
|
||||
.btn-login {
|
||||
width: 100%;
|
||||
margin-top: -8%;
|
||||
}
|
||||
|
||||
.return-login {
|
||||
margin-left: 0%;
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.return-login a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.return-login a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="bg-color">
|
||||
|
||||
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
|
||||
<img class="navbar-brand" src="assets/logo_transparent.png" alt="Banner" width="5%" style="margin-top: 0%;">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a style="color: white; font-size: 16pt;">Forgot Password Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
|
||||
</nav>
|
||||
|
||||
<div class="card card-2 text-white bg-dark mb-3" style="border-radius: 30px;">
|
||||
<div class="card-header" style="text-align: center; font-size: 24pt">Forgot Password</div>
|
||||
|
||||
<img src="assets/logo_transparent.png" alt="" width="40%" style="margin-left: 30%; margin-top: 0%;">
|
||||
<div class="py-3" style="padding: 0% 5%; text-align: center;">
|
||||
<a>Enter your email to receive instructions on how to reset your password.</a>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form class="px-4">
|
||||
<div class="form-group">
|
||||
<a href="" data-feather="mail" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormEmail1">Email</label>
|
||||
<input type="email" class="form-control" id="exampleDropdownFormEmail1" placeholder="Email address">
|
||||
</div>
|
||||
<br>
|
||||
<a href="OTPPage.html"><input type="button" value="Reset Password" class="btn btn-login btn-primary"></a>
|
||||
<div class="return-login">
|
||||
<a class="return" href="LoginPage.html">Or Return to Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
feather.replace()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
12
HomePage.html
Normal file
12
HomePage.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!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>Home Page</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
141
LoginPage.html
Normal file
141
LoginPage.html
Normal file
|
@ -0,0 +1,141 @@
|
|||
<!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 Page</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
|
||||
body{
|
||||
--base-color: rgb(56,60,68);
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.card-1 {
|
||||
background-color: #1b1c1e;
|
||||
margin-top: 1%;
|
||||
margin-bottom: 1%;
|
||||
margin-right: 35%;
|
||||
margin-left: 35%;
|
||||
}
|
||||
|
||||
.hoversingup-1 a {
|
||||
color: white;
|
||||
background-color: transparent;
|
||||
text-align: center;
|
||||
margin:0;
|
||||
padding-left: 0%;
|
||||
padding-top: 2%;
|
||||
padding-bottom: 2%;
|
||||
margin-top: 0;
|
||||
margin-left: 0%;
|
||||
font-size: 13pt;
|
||||
}
|
||||
|
||||
.hoversingup-1 a:hover {
|
||||
background-color: transparent;
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
button[type="submit"] {
|
||||
margin-bottom: 4%;
|
||||
}
|
||||
|
||||
.btn-login{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-check {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.forgot-password {
|
||||
margin-left: 20%;
|
||||
padding-left: 150px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.forgot-password a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.forgot-password a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="bg-color">
|
||||
|
||||
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
|
||||
<img class="navbar-brand" src="assets/logo_transparent.png" alt="Banner" width="5%" style="margin-top: 0%;">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a style="color: white; font-size: 16pt;">Login Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
|
||||
</nav>
|
||||
|
||||
<div class="card card-1 text-white bg-dark mb-3 login-color" style="border-radius: 30px;">
|
||||
<div class="card-header" style="text-align: center; font-size: 24pt">Login</div>
|
||||
<img src="assets/logo_transparent.png" alt="" width="40%" style="margin-left: 30%; margin-top: 0%;">
|
||||
<div class="card-body">
|
||||
<form class="px-4 py-3">
|
||||
<div class="form-group">
|
||||
<a href="" data-feather="mail" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormEmail1">Email</label>
|
||||
<input type="email" class="form-control" id="exampleDropdownFormEmail1" placeholder="Email">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<a href="" data-feather="lock" style="font-size: 40px;"></a>
|
||||
<label for="exampleDropdownFormPassword1">Password</label>
|
||||
<input type="password" class="form-control" id="exampleDropdownFormPassword1" placeholder="Password">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="form-check">
|
||||
<input type="checkbox" class="form-check-input" id="dropdownCheck">
|
||||
<label class="form-check-label" for="dropdownCheck">
|
||||
Remember me
|
||||
</label>
|
||||
</div>
|
||||
<div class="forgot-password">
|
||||
<a class="forget" href="ForgotPassword.html">Forgot Password?</a>
|
||||
</div>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-login btn-primary">Login</button>
|
||||
|
||||
<div class="hoversingup-1">
|
||||
<a class="dropdown-item" href="registerpage.html">No Have Account? Sign up</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
feather.replace()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
150
OTPPage.html
Normal file
150
OTPPage.html
Normal file
|
@ -0,0 +1,150 @@
|
|||
<!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>OTP Page</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
|
||||
<script src="https://unpkg.com/feather-icons"></script>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
|
||||
body{
|
||||
--base-color: rgb(56,60,68);
|
||||
font-family: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
.bg-color {
|
||||
background-color: #212226;
|
||||
}
|
||||
|
||||
.nav-color {
|
||||
background-color: #1b1c1e;
|
||||
}
|
||||
|
||||
.container{
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
height: 100%;
|
||||
align-items: space-around;
|
||||
justify-content: center;
|
||||
margin-top: 5%;
|
||||
margin-bottom: 5%;
|
||||
}
|
||||
|
||||
.userInput{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
input{
|
||||
margin: 10px;
|
||||
height: 35px;
|
||||
width: 65px;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
text-align: center;
|
||||
font-family: arimo;
|
||||
font-size: 1.2rem;
|
||||
background: #eef2f3;
|
||||
}
|
||||
|
||||
h1{
|
||||
text-align: center;
|
||||
font-family: arimo;
|
||||
color: honeydew;
|
||||
}
|
||||
|
||||
button{
|
||||
width: 150px;
|
||||
height: 40px;
|
||||
margin: 25px auto 0px auto;
|
||||
font-family: arimo;
|
||||
font-size: 1.1rem;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
letter-spacing: 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.card-3 {
|
||||
background-color: black;
|
||||
margin-top: 4%;
|
||||
margin-bottom: 4%;
|
||||
margin-right: 30%;
|
||||
margin-left: 30%;
|
||||
}
|
||||
|
||||
.btn-login {
|
||||
width: 85%;
|
||||
margin-top: 2%;
|
||||
}
|
||||
|
||||
.resend-code {
|
||||
text-align: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.resend-code a {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.resend-code a:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-radius {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="bg-color">
|
||||
<nav class="navbar navbar-dark nav-color ml-5 mr-5 nav-radius">
|
||||
<img class="navbar-brand" src="assets/logo_transparent.png" alt="Banner" width="5%" style="margin-top: 0%;">
|
||||
<ul class="navbar-nav">
|
||||
<li class="nav-item">
|
||||
<a style="color: white; font-size: 16pt;">OTP Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="collapse navbar-collapse" id="navbarTogglerDemo01"></div>
|
||||
</nav>
|
||||
|
||||
<div class="card card-3 text-white bg-dark mb-3" style="border-radius: 30px;">
|
||||
<div class="container">
|
||||
<p style="text-align: center; font-size: 24pt;">INPUT YOUR OTP</p>
|
||||
<img src="assets/logo_transparent.png" alt="" width="40%" style="margin-left: 30%; margin-top: 0%;">
|
||||
<br>
|
||||
<div class="userInput">
|
||||
<input type="text" id='ist' maxlength="1" onkeyup="clickEvent(this,'sec')">
|
||||
<input type="text" id="sec" maxlength="1" onkeyup="clickEvent(this,'third')">
|
||||
<input type="text" id="third" maxlength="1" onkeyup="clickEvent(this,'fourth')">
|
||||
<input type="text" id="fourth" maxlength="1" onkeyup="clickEvent(this,'fifth')">
|
||||
<input type="text" id="fifth" maxlength="1" onkeyup="clickEvent(this,'sixth')">
|
||||
<input type="text" id="sixth" maxlength="1">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-login btn-primary">Confirm</button>
|
||||
<br>
|
||||
<div class="resend-code">
|
||||
<a class="resend" href="ForgotPassword.html">Resend Code</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function clickEvent(first,last){
|
||||
if(first.value.length){
|
||||
document.getElementById(last).focus();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
feather.replace()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue