123456789101112131415161718192021222324252627282930313233343536 |
- {% extends "base.html" %}
- {% block content %}
- <p>Puedes escribirme a <img src="/static/imgs/rgarcia_at_laotra.red.jpg"></p>
- <p>Uso Mastodon y twitter @strymsg</p>
- <p>Puedes enviarme un mensaje directamente.</p>
- <form action="/contactoe" method="POST">
- Tu nombre:
- <p>
- <input type="text" id="nombre" name="nombre" size="35" maxlegth="500"/>
- </p>
- Te puedo responder a:<br>
- <input type="text" id="id_dir_respuesta" size="35" name="dir_respuesta" maxlegth="300" placeholder="Tu email o dirección de contacto"/>
- <br>
- <b>Mensaje:</b>
- <p>
- <textarea id="id_mensaje" name="mensaje" rows="4" cols="55" maxlength="7783" placeholder="tu mensaje" required></textarea>
- </p>
- <p>
- </p>
- <code>{{ contexto['pregunta'] }}</code>
- <input type="hidden" name="pregunta" value="{{ contexto['pregunta'] }}">
- <br>
- {% for opcion in contexto['opciones'] %}
- {{ opcion }}<input type="radio" id="id_respuesta" name="respuesta" value="{{ opcion }}" required />
- {% endfor %}
- <p>
- <input type="submit" value="Enviar">
- </p>
- </form>
- {% endblock %}
|