Logica de verificacion terminada

This commit is contained in:
2021-05-20 12:26:42 -03:00
parent 5a25331dc9
commit 9b934b2c95
9 changed files with 144 additions and 11 deletions

View File

@@ -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>