|
|
@@ -1,7 +1,16 @@
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
|
-
|
|
|
+<script type="text/javascript">
|
|
|
+ function CheckOtherToShowTextBox(val){
|
|
|
+ var element=document.getElementById('web_group');
|
|
|
+ if(val=='others')
|
|
|
+ element.style.display='block';
|
|
|
+ else
|
|
|
+ element.style.display='none';
|
|
|
+ }
|
|
|
+
|
|
|
+</script>
|
|
|
<div class="container py-5 h-100">
|
|
|
<div class="row d-flex justify-content-center align-items-center h-100">
|
|
|
<div class="col col-xl-10">
|
|
|
@@ -9,8 +18,8 @@
|
|
|
<div class="row g-0">
|
|
|
<div class="col-md-6 col-lg-5 d-none d-md-block">
|
|
|
<img
|
|
|
- src="/static/logo/edit_logo.png"
|
|
|
- alt="edit_logo"
|
|
|
+ src="/static/logo/bookmark_logo.png"
|
|
|
+ alt="bookmark_logo"
|
|
|
class="img-fluid" style="border-radius: 1rem 0 0 1rem;"
|
|
|
/>
|
|
|
</div>
|
|
|
@@ -29,21 +38,22 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
- <label class="form-label" for="web_name">Name</label>
|
|
|
+ <label class="form-label" for="web_name">Name</label>
|
|
|
<input type="text" id="web_name" class="form-control form-control-lg" />
|
|
|
</div>
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
<label class="form-label" for="web_group">Group Name</label><br>
|
|
|
- <select name="web_group" id="web_group">
|
|
|
- <option value="Calculator">Calculator</option>
|
|
|
- <option value="Cipher_Encoder">Cipher Encoder</option>
|
|
|
- <option value="Education">Education</option>
|
|
|
- <option value="Online_food_ordering">Online food ordering</option>
|
|
|
- <option value="Restaurant">Restaurant</option>
|
|
|
- <option value="Social_Media">Social Media</option>
|
|
|
- <option value="Other">*Other</option>
|
|
|
+ <select name="web_group" onchange='CheckOtherToShowTextBox(this.value);'>
|
|
|
+ <option value="Calculator">Calculator</option>
|
|
|
+ <option value="Cipher_Encoder">Cipher Encoder</option>
|
|
|
+ <option value="Education">Education</option>
|
|
|
+ <option value="Online_food_ordering">Online food ordering</option>
|
|
|
+ <option value="Restaurant">Restaurant</option>
|
|
|
+ <option value="Social_Media">Social Media</option>
|
|
|
+ <option value="others">Others</option>
|
|
|
</select>
|
|
|
+ <input type="text" name="web_group" id="web_group" style='display:none;'/>
|
|
|
</div>
|
|
|
|
|
|
<div class="form-outline mb-4">
|