23 lines
640 B
HTML
23 lines
640 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}生成提示词{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="generate-form">
|
|
<h1>生成提示词</h1>
|
|
<form method="POST">
|
|
{{ form.hidden_tag() }}
|
|
<div class="form-group">
|
|
{{ form.input_text.label }}
|
|
{{ form.input_text(class="form-control", rows=5) }}
|
|
{% for error in form.input_text.errors %}
|
|
<span class="error">{{ error }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="form-group">
|
|
{{ form.submit(class="btn btn-primary") }}
|
|
</div>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|