You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
5.0 KiB
86 lines
5.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/>
|
|
<link href="https://unicons.iconscout.com/release/v2.1.9/css/unicons.css" rel="stylesheet"/>
|
|
<link href="css/login.css" rel="stylesheet" />
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<div class="section">
|
|
<a href="home.html"><img src="assets/img/home.png"></a>
|
|
<div class="container">
|
|
<div class="row full-height justify-content-center">
|
|
<div class="col-12 text-center align-self-center py-5">
|
|
<div class="section pb-5 pt-5 pt-sm-2 text-center">
|
|
<h6 class="mb-0 pb-3"><span>Log In </span><span>Sign Up</span></h6>
|
|
<input class="checkbox" type="checkbox" id="reg-log" name="reg-log"/>
|
|
<label for="reg-log"></label>
|
|
<div class="card-3d-wrap mx-auto">
|
|
<div class="card-3d-wrapper">
|
|
<div class="card-front">
|
|
<div class="center-wrap">
|
|
<div class="section text-center">
|
|
<h4 class="mb-4 pb-3">Log In</h4>
|
|
<div class="form-group">
|
|
<input type="email" name="logemail" class="form-style" placeholder="Your Email" id="logemail" autocomplete="off">
|
|
<i class="input-icon uil uil-at"></i>
|
|
</div>
|
|
<div class="form-group mt-2">
|
|
<input type="password" name="logpass" class="form-style" placeholder="Your Password" id="logpass" autocomplete="off">
|
|
<i class="input-icon uil uil-lock-alt"></i>
|
|
</div>
|
|
<a href="#" class="btn mt-4">submit</a>
|
|
<p class="mb-0 mt-4 text-center"><a href="#0" class="link">Forgot your password?</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-back">
|
|
<div class="center-wrap">
|
|
<div class="section text-center">
|
|
<h4 class="mb-4 pb-3">Sign Up</h4>
|
|
|
|
<div class="form-group mt-2">
|
|
<input type="text" name="logsurname" class="form-style" placeholder="Surname" id="logsurname" autocomplete="off">
|
|
<i class="input-icon uil uil-user"></i>
|
|
</div>
|
|
|
|
<div class="form-group mt-2" >
|
|
<input type="text" name="logname" class="form-style" placeholder="Name" id="logname" autocomplete="off">
|
|
<i class="input-icon uil uil-user"></i>
|
|
</div>
|
|
|
|
<div class="form-group mt-2">
|
|
<input type="text" name="lognickname" class="form-style" placeholder="Nickname" id="lognickname" autocomplete="off">
|
|
<i class="input-icon uil uil-user"></i>
|
|
</div>
|
|
|
|
<div class="form-group mt-2">
|
|
<input type="email" name="logmail" class="form-style" placeholder="Your Email" id="logmail" autocomplete="off">
|
|
<i class="input-icon uil uil-at"></i>
|
|
</div>
|
|
|
|
<div class="form-group mt-2">
|
|
<input type="password" name="logpasswd" class="form-style" placeholder="Your Password" id="logpasswd" autocomplete="off">
|
|
<i class="input-icon uil uil-lock-alt"></i>
|
|
</div>
|
|
|
|
|
|
|
|
<a href="#" class="btn mt-4">submit</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|