Merge pull request #39 from dod-ccpo/screen-2-fix

remove an unused template and fix a form bug
This commit is contained in:
dandds 2018-06-19 15:56:28 -04:00 committed by GitHub
commit 4d285e6088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 30 deletions

View File

@ -1,24 +0,0 @@
{% extends '../requests_new.html.to' %}
{% block form %}
form goes here
<br>
{% if f.errors %}
<b>There were some errors</b>
{% end %}
<hr>
{% autoescape None %}
{% for e in f.a.errors %}
<b>{{ e }}</b>
{% end %}
<br>
a: {{ f.a }}
<hr>
b: {{ f.b }}
<br>
{% end %}

View File

@ -8,7 +8,6 @@
<h3 id="information-about-you">Information About You</h3> <h3 id="information-about-you">Information About You</h3>
<form>
<label for="">Name</label> <label for="">Name</label>
<input id="" name="" type="text"> <input id="" name="" type="text">
@ -56,8 +55,8 @@
</li> </li>
</ul> </ul>
</fieldset> </fieldset>
<fieldset> <fieldset>
<label for="">Latest IA Training completion date</label> <label for="">Latest IA Training completion date</label>
@ -78,10 +77,8 @@
</div> </div>
</fieldset> </fieldset>
</form>
<h3 id="information-about-your-collaborators">Information About Your Collaborators</h3> <h3 id="information-about-your-collaborators">Information About Your Collaborators</h3>
<form>
<p>Please designate a Contracting Officer that will help you complete this process.</p> <p>Please designate a Contracting Officer that will help you complete this process.</p>
<label for="">Name</label> <label for="">Name</label>
<input id="" name="" type="text"> <input id="" name="" type="text">
@ -89,7 +86,6 @@
<label for="">Email</label> <label for="">Email</label>
<input id="" name="" type="text" placeholder="i.e. name@mail.gov"> <input id="" name="" type="text" placeholder="i.e. name@mail.gov">
</form>
{% end %} {% end %}