Skip to content

Commit

Permalink
Add icons to buttons of different forms to make them more visually di…
Browse files Browse the repository at this point in the history
…stinct.
  • Loading branch information
thijskh committed Nov 27, 2018
1 parent 91eeb4d commit 5ef08d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/www/clarification.php
Expand Up @@ -588,7 +588,7 @@ function confirmClar() {
} ?>

<div class="form-group">
<input type="submit" value="Send" name="submit" class="btn btn-primary" />
<button type="submit" name="submit" class="btn btn-primary"><i class="fas fa-envelope"></i> Send</button>
</div>
</form>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/www/printing.php
Expand Up @@ -70,7 +70,7 @@ function detectLanguage(filename)
} ?>
</select>
</div>
<input type="submit" name="submit" value="Print code" class="btn btn-primary" />
<button type="submit" name="submit" class="btn btn-primary"><i class="fas fa-print"></i> Print code</button>
</form>
</div>

Expand Down
2 changes: 1 addition & 1 deletion www/team/submit.php
Expand Up @@ -85,7 +85,7 @@
<input type="text" class="form-control" name="entry_point" id="entry_point" aria-describedby="entrypointhelp">
<small id="entrypointhelp" class="form-text text-muted">The entry point for your code.</small>
</div>
<input type="submit" name="submit" value="Submit" class="btn btn-primary" />
<button type="submit" name="submit" class="btn btn-primary"><i class="fas fa-cloud-upload-alt"></i> Submit</button>
</form>
<script type="text/javascript">initFileUploads(<?=$maxfiles?>);</script>
</div>
Expand Down

0 comments on commit 5ef08d5

Please sign in to comment.