contacto.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <p>Puedes escribirme a <img src="/static/imgs/rgarcia_at_laotra.red.jpg"></p>
  4. <p>Uso Mastodon y twitter @strymsg</p>
  5. <p>Puedes enviarme un mensaje directamente.</p>
  6. <form action="/contactoe" method="POST">
  7. Tu nombre:
  8. <p>
  9. <input type="text" id="nombre" name="nombre" size="35" maxlegth="500"/>
  10. </p>
  11. Te puedo responder a:<br>
  12. <input type="text" id="id_dir_respuesta" size="35" name="dir_respuesta" maxlegth="300" placeholder="Tu email o dirección de contacto"/>
  13. <br>
  14. <b>Mensaje:</b>
  15. <p>
  16. <textarea id="id_mensaje" name="mensaje" rows="4" cols="55" maxlength="7783" placeholder="tu mensaje" required></textarea>
  17. </p>
  18. <p>
  19. </p>
  20. <code>{{ contexto['pregunta'] }}</code>
  21. <input type="hidden" name="pregunta" value="{{ contexto['pregunta'] }}">
  22. <br>
  23. {% for opcion in contexto['opciones'] %}
  24. {{ opcion }}<input type="radio" id="id_respuesta" name="respuesta" value="{{ opcion }}" required /> &nbsp;
  25. {% endfor %}
  26. <p>
  27. <input type="submit" value="Enviar">
  28. </p>
  29. </form>
  30. {% endblock %}