Skip to content

Commit

Permalink
Quota form specify GA email
Browse files Browse the repository at this point in the history
  • Loading branch information
neoformit committed Aug 30, 2023
1 parent 3235f90 commit 241108c
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions webapp/home/templates/home/requests/quota.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,27 @@ <h2>Galaxy Australia Quota Increase Application</h2>
</div>

<div class="col-md-6">
<label for="emailInput" class="form-label">Email</label>
<input class="form-control" id="emailInput" type="text" name="email"
value="{{form.email.value|default_if_none:''}}"
aria-describedby="emailHelp" required
<label for="emailInput" class="form-label">Galaxy Account Email</label>
<input class="form-control" id="emailInput" type="email" name="email"
value="{{form.email.value|default_if_none:''}}"
aria-describedby="emailHelp"
onfocus="$('#emailHelp').show();"
autocomplete="off"
required
>
<div id="emailHelp" class="form-text">
We may contact you to request further detail.
<div id="emailHelp" class="form-text" style="display: none;">
<div class="alert alert-danger">
<ul style="margin: 0;">
<li>
Your Galaxy Australia account must be registered to this email
for us to upgrade your quota
</li>
<li>
Go to User > Preferences > Manage information to see your registered
email address on usegalaxy.org.au
</li>
<ul>
</div>
</div>
{{ form.email.errors }}
</div>
Expand Down

0 comments on commit 241108c

Please sign in to comment.