Skip to content

Commit

Permalink
Smaller inputs + not mentioning required fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius O committed Jan 8, 2016
1 parent 7256840 commit efe77fd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions geokey_export/templates/export_create.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ <h3 class="header">Create new export</h3>
{% csrf_token %}

<div class="form-group">
<label for="name" class="control-label">Name (required)</label>
<input type="text" class="form-control input-lg" id="name" name="name" maxlength="100" required>
<label for="name" class="control-label">Name</label>
<input type="text" class="form-control" id="name" name="name" maxlength="100" required>
</div>

<div class="form-group">
<label for="project" class="control-label">Project (required)</label>
<select class="form-control input-lg" id="project" name="project" required>
<label for="project" class="control-label">Project</label>
<select class="form-control" id="project" name="project" required>
<option value=""></option>

{% for project in projects %}
Expand All @@ -33,14 +33,14 @@ <h3 class="header">Create new export</h3>
</div>

<div class="form-group hidden">
<label for="category" class="control-label">Category (required)</label>
<select class="form-control input-lg" id="category" name="category" required>
<label for="category" class="control-label">Category</label>
<select class="form-control" id="category" name="category" required>
<option value=""></option>
</select>
</div>

<div class="form-group">
<label class="control-label">Export length of availability (required)</label>
<label class="control-label">Export length of availability</label>

<label class="radio">
<input type="radio" name="expiration" value="one_off" required>
Expand Down

0 comments on commit efe77fd

Please sign in to comment.