mirror of
https://github.com/FranP-code/Login-Form.git
synced 2025-10-12 23:52:47 +00:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!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>Register</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="stylesheet" href="normalize.css">
|
|
</head>
|
|
<body>
|
|
<header class="header-register">
|
|
<a href="./index.html">
|
|
<div class="back-arrow"></div>
|
|
</a>
|
|
<h1>Register on the website</h1>
|
|
</header>
|
|
|
|
|
|
<div>
|
|
<form action="./logic/register.php" method="POST" name="form">
|
|
<input type="text" name="user"placeholder="User" class="input-1" required maxlength="20">
|
|
<input type="password" name="password" placeholder="Password" class="input-2" required maxlength="20">
|
|
<input type="password" name="confirm-password" placeholder="Repeat Password" class="input2" required maxlength="20">
|
|
<input type="submit" name="submit" value="Send" class="submit">
|
|
</form>
|
|
</div>
|
|
|
|
<script src="./scripts/register.js"></script>
|
|
</body>
|
|
</html> |