mirror of
https://github.com/FranP-code/Login-Form.git
synced 2025-10-12 23:52:47 +00:00
HTML y CSS de las 3 paginas listos
This commit is contained in:
30
register.html
Normal file
30
register.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!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">
|
||||
<script src="script.js"></script>
|
||||
</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">
|
||||
<input type="text" placeholder="User" class="input-1" required>
|
||||
<input type="password" placeholder="Password" class="input-2" required>
|
||||
<input type="password" placeholder="Repeat Password" class="input2" required>
|
||||
<input type="submit" value="Send" class="submit">
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user