Skip to content
Snippets Groups Projects
Commit 416cc145 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Fix unclickable input fields

parent 1f0e7f1c
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ class AddCorpusFileForm(FlaskForm): ...@@ -28,7 +28,7 @@ class AddCorpusFileForm(FlaskForm):
class AddCorpusForm(FlaskForm): class AddCorpusForm(FlaskForm):
description = StringField('Description', description = StringField('Description',
validators=[DataRequired(), Length(1, 64)]) validators=[DataRequired(), Length(1, 255)])
submit = SubmitField() submit = SubmitField()
title = StringField('Title', validators=[DataRequired(), Length(1, 32)]) title = StringField('Title', validators=[DataRequired(), Length(1, 32)])
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
{% block page_content %} {% block page_content %}
<div class="col s12 m4"> <div class="col s12 m4">
<h3 id="title">...</h3> <h3>...</h3>
<p id="description">Fill out the following form to add a corpus to your corpora.</p> <p>Fill out the following form to add a corpus to your corpora.</p>
<a class="waves-effect waves-light btn" href="{{ url_for('main.dashboard') }}"><i class="material-icons left">arrow_back</i>Back to dashboard</a> <a class="waves-effect waves-light btn" href="{{ url_for('main.dashboard') }}"><i class="material-icons left">arrow_back</i>Back to dashboard</a>
</div> </div>
...@@ -36,8 +36,10 @@ ...@@ -36,8 +36,10 @@
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
<div class="col s12"> <div class="row">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,</p> <div class="col s12">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,</p>
</div>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<div class="row"> <div class="row">
<div class="col s12 m6"> <div class="col s12 m6">
<span class="card-title">Check Encoding</span> <span class="card-title">Check Encoding</span>
<p>If the input files are not created with the nopaque OCR service and you do not know if your tex files are UTF-8 encoded, check this switch. We will try to automatically determine the right encoding for your texts.</p> <p>If the input files are not created with the nopaque OCR service or you do not know if your text files are UTF-8 encoded, check this switch. We will try to automatically determine the right encoding for your texts to process them.</p>
<div class="switch"> <div class="switch">
<label> <label>
{{ add_job_form.check_encoding() }} {{ add_job_form.check_encoding() }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment