33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="../assets/hard-disk.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="../css/transition.css">
|
|
<link rel="stylesheet" href="../css/sing_up_profile.css">
|
|
<script src="../js/sign_up_profile.js"></script>
|
|
<title>Signup</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>LET US MEET</h1>
|
|
<h1>EACH OTHER</h1>
|
|
</div>
|
|
<form id="signupForm" class="signup-form">
|
|
<div class="signup-form-title">
|
|
<h2>Sign Up</h2>
|
|
<hr>
|
|
</div>
|
|
<div>
|
|
<input type="email" name="email" placeholder="Email">
|
|
<input type="text" name="name" placeholder="Username">
|
|
<input type="password" name="password" placeholder="Password">
|
|
</div>
|
|
<div class="signup-form-footer">
|
|
<button id="login" type="button" name="login">Login</button>
|
|
<button id="continue" type="submit" name="submit">Continue</button>
|
|
</div>
|
|
</form>
|
|
</div> |