view mod_email_pass/templates/changepass.html @ 4651:8231774f5bfd

mod_cloud_notify_encrypted: Ensure body substring remains valid UTF-8 The `body:sub()` call risks splitting the string in the middle of a multi-byte UTF-8 sequence. This should have been caught by util.stanza validation, but that would have caused some havoc, at the very least causing the notification to not be sent. There have been no reports of this happening. Likely because this module isn't widely deployed among users with languages that use many longer UTF-8 sequences. The util.encodings.utf8.valid() function is O(n) where only the last sequence really needs to be checked, but it's in C and expected to be fast.
author Kim Alvefur <zash@zash.se>
date Sun, 22 Aug 2021 13:22:59 +0200
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&oacute;n, se enviar&aacute; a la direcci&oacute;n de correo que figura
      en tu vCard un enlace en el que deber&aacute;s entrar.<br />
      </p>
    </div>
  </body>
</html>