mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
feature: make start_local/start_exe work reliably
This commit is contained in:
+17
-11
@@ -79,28 +79,34 @@
|
||||
>{{value}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3">
|
||||
<div class="row">
|
||||
<button class="btn btn-primary" type="submit" value="save">Save</button>
|
||||
<button class="btn btn-primary" type="submit" value="save">Save Settings</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="d-flex">
|
||||
<form method="POST" enctype="multipart/form-data" action="/start_project">
|
||||
<form method="POST" enctype="multipart/form-data" action="/build_project">
|
||||
<input type="hidden" name="project_name" value="{{project_name}}">
|
||||
|
||||
<button class="btn btn-primary" type="submit" value="start">Start</button>
|
||||
|
||||
<input class="form-check-input" name="try_start" type="checkbox" value="checked" id="flexCheckDefault" checked>
|
||||
<label class="form-check-label" for="flexCheckDefault">
|
||||
Start Infected Exe
|
||||
</label>
|
||||
<button class="btn btn-primary" type="submit" value="start">Build</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<form method="POST" enctype="multipart/form-data" action="/exec_project">
|
||||
<input type="hidden" name="project_name" value="{{project_name}}">
|
||||
<button class="btn btn-primary" type="submit" value="start">Start Local</button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<form method="POST" enctype="multipart/form-data" action="/exec_project?remote=true">
|
||||
<input type="hidden" name="project_name" value="{{project_name}}">
|
||||
<button class="btn btn-primary" type="submit" value="start">Start Remote</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user