2022-03-13 16:16:46 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="/css/styles.css" />
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Register</title>
|
|
|
|
<meta name="description" content="Akf-forum!">
|
|
|
|
<link rel="icon" type="image/x-icon" href="/images/favicon.jpg">
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
|
|
<a href="/"><img class="logo" src="/images/logo.jpg" alt="AKF-FORUM"></a>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
<button class="buyuk" onclick="window.location.href = '/login'">LOGIN PAGE</button>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h1>Register</h1>
|
|
|
|
<hr>
|
|
|
|
<form action="/register" method="post">
|
|
|
|
|
|
|
|
|
|
|
|
<input type="text" name="username" placeholder="Username" id="username" required>
|
|
|
|
|
|
|
|
<input type="password" name="password" placeholder="Password" id="password" required>
|
|
|
|
|
|
|
|
<input type="text" name="avatar" placeholder="Avatar URL" id="avatar">
|
|
|
|
|
|
|
|
<input type="submit" value="Register">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
2022-02-26 21:12:54 +03:00
|
|
|
</html>
|