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.
48 lines
1.6 KiB
48 lines
1.6 KiB
<!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">
|
|
<link rel="stylesheet" href="../../CSS/LogSign.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<script defer src="../../JS/Login.js"></script>
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="login-box" id="form">
|
|
<div class="top">
|
|
<a class="material-icons" id="home" href="../Home.html" style="font-size:36px;color:white;">home</a>
|
|
<h2>Sign up</h2>
|
|
</div>
|
|
<form>
|
|
<div class="user-box">
|
|
<input type="text" id="username" name="" required="">
|
|
<label>Username</label>
|
|
</div>
|
|
<div class="user-box">
|
|
<input type="password" id="password" name="" required="">
|
|
<label>Password</label>
|
|
</div>
|
|
<div>
|
|
<button class="left" type="submit">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
Submit
|
|
</button>
|
|
<a href="./SignUp.html" class="right">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
Sign up
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |