35 lines
647 B
Plaintext
35 lines
647 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Charakter erstellen</title>
|
|
<link rel="stylesheet" href="/css/global.css" />
|
|
<link rel="stylesheet" href="/css/login.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="box">
|
|
|
|
<h2>Wähle deinen Charakternamen</h2>
|
|
|
|
<% if (typeof error !== "undefined") { %>
|
|
<div class="error"><%= error %></div>
|
|
<% } %>
|
|
|
|
<form action="/create-character" method="POST">
|
|
|
|
<input type="text" name="ingame_name" placeholder="Charaktername" required>
|
|
|
|
<button type="submit">
|
|
Charakter erstellen
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |