Mercurial > prosody-modules
annotate mod_email_pass/templates/changepass.html @ 5405:c7a5caad28ef
mod_http_oauth2: Enforce response type encoded in client_id
The client promises to only use this response type, so we should hold
them to that.
This makes it fail earlier if the response type is disabled or the
client is trying to use one that it promised not to use. Better than
failing after login and consent.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 02 May 2023 16:31:25 +0200 |
parents | 7dbde05b48a9 |
children |
rev | line source |
---|---|
1342 | 1 <!DOCTYPE html> |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
1343
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
5 <link rel="stylesheet" type="text/css" href="style.css" /> |
1342 | 6 <title>Reseteo de la clave de tu cuenta Jabber</title> |
7 </head> | |
8 <body> | |
9 <div id="estilo" class="formulario"> | |
10 <h1>Reseteo de la clave de tu cuenta Jabber</h1> | |
11 <form action="{path}" method="POST"> | |
1343
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
12 <p class="error">{notice}</p> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
13 <label> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
14 Usuario: |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
15 <span class="small">Introduce tu usuario</span> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
16 </label> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
17 <input type="text" name="username" required>@{hostname} |
1342 | 18 <div class="spacer"></div> |
1343
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
19 <label> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
20 Email: |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
21 <span class="small">Introduce tu email</span> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
22 </label> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
23 <input type="text" name="email" required> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
24 <div class="spacer"></div> |
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
25 |
1342 | 26 <input id="button" class="button" type="submit" value="Enviar!"> |
27 <div class="spacer"></div> | |
28 </form> | |
29 <p> | |
30 Al pulsar sobre el botón, se enviará a la dirección de correo que figura | |
1343
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
31 en tu vCard un enlace en el que deberás entrar.<br /> |
1342 | 32 </p> |
1343
7dbde05b48a9
all the things: Remove trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
1342
diff
changeset
|
33 </div> |
1342 | 34 </body> |
35 </html> | |
36 |