InternetProga/auth.html

17 lines
511 B
HTML
Raw Normal View History

2025-02-17 11:32:06 +04:00
<!DOCTYPE html>
<html lang="ru">
<title>Auth</title>
<link rel="stylesheet" href="resourse/main.css">
<body>
<div class="container">
<h1>Регистрация</h1>
<form>
<input type="email" id="email" placeholder="Email" required />
<input type="password" id="password" placeholder="Password" required />
2025-02-21 11:53:20 +04:00
<div>
2025-02-17 11:32:06 +04:00
<input class="button" type="submit" value="Регистрация"></button>
2025-02-21 11:53:20 +04:00
</div>
2025-02-17 11:32:06 +04:00
</form>
</div>
</body>
</html>