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.
41 lines
1.3 KiB
41 lines
1.3 KiB
<html lang="fr">
|
|
<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="https://fonts.googleapis.com/icon?family=Material+Icons">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="login-box" id="form">
|
|
<div class="top">
|
|
<h2>Sign up</h2>
|
|
</div>
|
|
<form action="get.php" method="POST">
|
|
<div class="user-box">
|
|
<input type="text" id="email" name="email" required="">
|
|
<label>Email</label>
|
|
</div>
|
|
<div class="user-box">
|
|
<input type="text" id="username" name="username" required="">
|
|
<label>Username</label>
|
|
</div>
|
|
<div class="user-box">
|
|
<input type="password" id="password" name="password" required="">
|
|
<label>Password</label>
|
|
</div>
|
|
<div>
|
|
<button class="left" type="submit">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
Submit
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |