mastodon_algorithm_frontend/login.php

20 lines
630 B
PHP

<!DOCTYPE html>
<head>
<title>Login | Mastodon Algorithm</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<script src="https://cdn.jsdelivr.net/npm/appwrite@10.1.0"></script>
<body>
<fieldset>
<legend>Login</legend>
<label>Email: </label> <input type="email" id="email" /><br>
<label>Password: </label> <input type="password" id="password" /><br>
<span id="error-message" style="color: red;"></span>
<button type="button" id="login">Log in</button>
</fieldset>
</body>
<?php $script = 'js/login.js';
require("template/footer.php") ?>