sso.fb1.uni-bremen.de/docker/compose/externals/data/templates/post.html
2025-04-04 22:37:43 +02:00

100 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register your FB1 guest's account</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 500px;
margin: 0 auto;
padding: 20px;
}
.user-info {
margin-bottom: 20px;
text-align: right;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
input[type="email"] {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
textarea {
height: 150px;
width: 100%;
resize: vertical;
}
.status-marker {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
margin-left: 10px;
}
.submit-btn {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
margin-top: 15px;
}
.submit-btn:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<header>
<img src="/externals/static/UNI_Logo.svg" alt="University of Bremen Logo" style="max-width: 200px;">
</header>
<div class="user-info">
Welcome, {{ username }} | <a href="{{ url_for('externals.logout') }}">Logout</a>
</div>
<p>
{{ added_email|safe }}
<h1>Register your FB1 guest's account</h1>
Use this form and afterwards the guest needs to use the password via the "Forgot Password?" option during the login process.<p>
<form method="POST" id="demo-form">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<p>
<button type="submit" class="submit-btn">Register</button>
</form>
</body>
</html>