chatr/ChatrServer/wwwroot/signup/index.html

49 lines
2.0 KiB
HTML
Raw Permalink Normal View History

2022-08-24 11:34:56 +00:00
<!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>Sign Up</title>
<link rel="stylesheet" href="./css/material.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="./css/styles.css">
<link rel="manifest" href="./site.webmanifest">
<link rel="icon" type="image/x-icon" href="./favicon.ico">
</head>
<body>
<form class="center-screen" action="./api/signup" method="POST">
<h1>Chatr</h1>
<!-- Simple Textfield -->
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="name" id="sample1">
<label class="mdl-textfield__label" for="sample1">Your Name</label>
</div>
<br>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="email" name="email" id="sample1">
<label class="mdl-textfield__label" for="sample1">Email</label>
</div>
<br>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="uname" id="sample1">
<label class="mdl-textfield__label" for="sample1">Username</label>
</div>
<br>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="password" name="password" id="sample1">
<label class="mdl-textfield__label" for="sample1">Password</label>
</div>
<br>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="password" name="password2" id="sample1">
<label class="mdl-textfield__label" for="sample1">Confirm Password</label>
</div>
<br>
<input type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" value="Signup">
<a href="./login">Login</a>
</form>
<script src="./js/material.min.js"></script>
</body>
</html>