You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
|
3 years ago
|
<!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>
|