mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>SSO redirect confirmation</title>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
<style type="text/css">
|
|
{% include "sso.css" without context %}
|
|
|
|
#consent_form {
|
|
margin-top: 56px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Your account is nearly ready</h1>
|
|
<p>Agree to the terms to create your account.</p>
|
|
</header>
|
|
<main>
|
|
<!-- {% if user_profile.avatar_url and user_profile.display_name %} -->
|
|
<div class="profile">
|
|
<img src="{{ user_profile.avatar_url | mxc_to_http(64, 64) }}" class="avatar" />
|
|
<div class="profile-details">
|
|
<div class="display-name">{{ user_profile.display_name }}</div>
|
|
<div class="user-id">{{ user_id }}</div>
|
|
</div>
|
|
</div>
|
|
<!-- {% endif %} -->
|
|
<form method="post" action="{{my_url}}" id="consent_form">
|
|
<p>
|
|
<input id="accepted_version" type="checkbox" name="accepted_version" value="{{ consent_version }}" required>
|
|
<label for="accepted_version">I have read and agree to the <a href="{{ terms_url }}" target="_blank">terms and conditions</a>.</label>
|
|
</p>
|
|
<input type="submit" class="primary-button" value="Continue"/>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|