feature: UI/UX improvements

This commit is contained in:
Dobin
2024-03-23 12:16:20 +00:00
parent 0333fc2673
commit ba933bd018
7 changed files with 46 additions and 23 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
{% endfor %}
</ul>
<a href="/add_project">Add</a>
<a href="/add_project">Add Project</a>
</div>
</body>
</html>
+1 -1
View File
@@ -14,7 +14,7 @@
<div class="row">
<div class="col-3">
<input type="text" name="comment" class="hidden form-control" value="{{project.comment}}"
<input type="text" name="comment" class="hidden form-control" placeholder="Comment" value="{{project.comment}}"
placeholder="" aria-label="PROJECTNAME" aria-describedby="basic-addon1">
<select class="form-select" name="shellcode" aria-label="SHELLCODE">
+2 -9
View File
@@ -14,9 +14,9 @@
<form method="POST" enctype="multipart/form-data" action="/add_project">
<input type="text" name="project_name" class="form-control" placeholder="Projekt" aria-label="PROJECTNAME" aria-describedby="basic-addon1">
<div class="row row-cols-lg-auto g-3">
<input type="text" name="project_name" class="form-control" placeholder="Projekt name" aria-label="PROJECTNAME" aria-describedby="basic-addon1">
<select class="form-select" name="shellcode" aria-label="SHELLCODE">
{% for shellcode in shellcodes %}
@@ -60,13 +60,6 @@
{% endfor %}
</select>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
Execute after injection
</label>
</div>
<button class="btn btn-primary" type="submit" value="save">Save</button>
</div>