mirror of
https://github.com/FranP-code/Login-Form.git
synced 2025-10-12 23:52:47 +00:00
Logica de verificacion terminada
This commit is contained in:
@@ -7,7 +7,6 @@
|
||||
<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">
|
||||
@@ -19,12 +18,14 @@
|
||||
|
||||
|
||||
<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 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>
|
||||
Reference in New Issue
Block a user