-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcursor_settings.html
More file actions
27 lines (26 loc) · 1.11 KB
/
cursor_settings.html
File metadata and controls
27 lines (26 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}
{% block content %}
<div class="container mt-4">
<h1>Cursor Settings</h1>
<form action="{{ url_for('get_cursor_choices') }}" style="width: 200px; margin: autio" method="post" id="form1">
<label for="primary_cusor">Select primary cursor :</label> <br>
<select name="primary_cursor" style="width: 160px; height: 40px; margin-top: 5px;" id="primary_cursor" class="form-control">
{% for cursor in cursors %}
<option value="{{ cursor }}.cur">{{cursor}}</option>
{% endfor %}
</select>
<br>
<label for="secondary_cusor">Select secondary cursor :</label> <br>
<select name="secondary_cursor" style="width: 160px; height: 40px; margin-top: 5px;" id="secondary_cursor" class="form-control">
{% for cursor in cursors %}
<option value="{{ cursor }}.cur">{{cursor}}</option>
{% endfor %}
</select>
<br>
<button id="activate_cursor" type="submit" form="form1" class="btn btn-primary">
Activate
</button>
<br>
</form>
</div>
{% endblock %}