chatr/ChatrServer/wwwroot/login/index.html

39 lines
1.7 KiB
HTML

<!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>Login</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/login" method="POST">
<!-- Simple Textfield -->
<h1>Chatr</h1>
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" name="username" 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>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-1">
<input type="checkbox" id="checkbox-1" name="remember" class="mdl-checkbox__input" checked>
<span class="mdl-checkbox__label">Remember Me</span>
</label>
<input type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" value="Login">
<a href="./signup">Sign Up</a>
</form>
<script src="./js/material.min.js"></script>
</body>
</html>