Add 'signup.html'

main
ezn 3 years ago
parent 30d9047ebb
commit 36fd794e27

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<!-- we need to edit these ------------------------------------------------- - -->
<!-- we need to edit these ------------------------------------------------- - -->
<!-- we need to edit these ------------------------------------------------- - -->
<title>Signup</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
<script src="https://unpkg.com/just-validate@latest/dist/just-validate.production.min.js" defer></script>
<script src="js/validation.js" defer></script>
</head>
<body>
<h1>Signup</h1>
<form action="process-signup.php" method="post" id="signup" novalidate>
<div>
<label for="nfc">nfc</label>
<input type="text" id="nfc" name="nfc">
</div>
<div>
<label for="name">name</label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="email">email</label>
<input type="email" id="email" name="email">
</div>
<div>
<label for="password">password</label>
<input type="password" id="password" name="password">
</div>
<div>
<label for="password_confirmation">repeat password</label>
<input type="password" id="password_confirmation" name="password_confirmation">
</div>
<button>Sign up</button>
</form>
</body>
</html>
Loading…
Cancel
Save