opentrashmail/web/templates/password.html.php

19 lines
378 B
PHP
Raw Normal View History

2023-11-22 11:26:09 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Password Form</title>
</head>
<body>
<h1>Enter Password</h1>
<form action="/" method="POST">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br><br>
<input type="submit" value="Submit">
</form>
<h2><?=$error?></h2>
</body>
</html>