-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
308 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<div id="modal-send-command" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="modalLabel" aria-hidden="true"> | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content" style="width: 100%; height: 100%; position: absolute; top: 0; left: 0;"> | ||
<div class="modal-header"> | ||
<h5 class="header-text">Send Command</h5> | ||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body" style="background-color: white;"> | ||
<div class="form-group"> | ||
<label for="command-select">Select Command</label> | ||
<select id="command-select" style="width: 50%;"> | ||
<option value="" disabled selected>Select a command</option> | ||
</select> | ||
</div> | ||
<div class="form-group" style="display: none;" id="options-container"> | ||
<label for="options-select">Options</label> | ||
<select id="options-select" style="width: 50%;"> | ||
<option value="" disabled selected>Select an option</option> | ||
</select> | ||
</div> | ||
<div class="form-group" style="display: none;" id="text-container"> | ||
<label for="text-input">Input</label> | ||
{% verbatim %} | ||
<input type="text" id="text-input" name="text-input" class="bs5 form-control" style="width: 47%;"> | ||
{% endverbatim %} | ||
</div> | ||
<div class="form-group" id="description-container"> | ||
<label for="command-description">Description</label> | ||
<p id="command-description" style="background-color: white; border: none;"></p> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<button class="btn btn-primary ml-3" data-toggle="modal" data-target="#modal-send-command" id="btn-send-command">Send Command</button> | ||
<button type="button" class="btn btn-default" data-dismiss="modal" aria-label="Close">Cancel</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.