Mercurial > prosody-modules
view mod_email_pass/templates/changepass.html @ 5536:96dec7681af8
mod_firewall: Update user marks to store instantly via map store
The original approach was to keep marks in memory only, and persist them at
shutdown. That saves I/O, at the cost of potentially losing marks on an
unclean shutdown.
This change persists marks instantly, which may have some performance overhead
but should be more "correct".
It also splits the marking/unmarking into an event which may be watched or
even fired by other modules.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 08 Jun 2023 16:20:42 +0100 |
parents | 7dbde05b48a9 |
children |
line wrap: on
line source
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="style.css" /> <title>Reseteo de la clave de tu cuenta Jabber</title> </head> <body> <div id="estilo" class="formulario"> <h1>Reseteo de la clave de tu cuenta Jabber</h1> <form action="{path}" method="POST"> <p class="error">{notice}</p> <label> Usuario: <span class="small">Introduce tu usuario</span> </label> <input type="text" name="username" required>@{hostname} <div class="spacer"></div> <label> Email: <span class="small">Introduce tu email</span> </label> <input type="text" name="email" required> <div class="spacer"></div> <input id="button" class="button" type="submit" value="Enviar!"> <div class="spacer"></div> </form> <p> Al pulsar sobre el botón, se enviará a la dirección de correo que figura en tu vCard un enlace en el que deberás entrar.<br /> </p> </div> </body> </html>