|
@@ -79,7 +79,6 @@ body{
|
|
|
list-style-type: disc;
|
|
list-style-type: disc;
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
list-style-type: none;
|
|
list-style-type: none;
|
|
|
-
|
|
|
|
|
}
|
|
}
|
|
|
.list_li_height {
|
|
.list_li_height {
|
|
|
height: nowrap;
|
|
height: nowrap;
|
|
@@ -89,8 +88,11 @@ body{
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.text_border {
|
|
.text_border {
|
|
|
- border: 4px solid gray;
|
|
|
|
|
- padding: 2px 0px 4px 0px;
|
|
|
|
|
|
|
+ padding: 1px 0px 1px 0px;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ position:absolute; left:90px;
|
|
|
|
|
+ bottom:-1px;
|
|
|
|
|
+ border: 2px solid gray;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
</style>
|
|
@@ -130,6 +132,7 @@ body{
|
|
|
</div>
|
|
</div>
|
|
|
</form>
|
|
</form>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <!------ Change Username and Password ---------->
|
|
|
<form method="POST">
|
|
<form method="POST">
|
|
|
<div class="card-body">
|
|
<div class="card-body">
|
|
|
<hr style="border: 3px solid rgb(177, 176, 176); width:327px; border-radius: 5px;">
|
|
<hr style="border: 3px solid rgb(177, 176, 176); width:327px; border-radius: 5px;">
|
|
@@ -170,18 +173,20 @@ body{
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <!------ List of bookmarks you have created ---------->
|
|
|
<div class="card">
|
|
<div class="card">
|
|
|
<div class="container">
|
|
<div class="container">
|
|
|
<div class="col-md-12">
|
|
<div class="col-md-12">
|
|
|
<h2 class="text-center" style="padding-left:75px; padding-right:75px;">List of bookmarks you have created </h2>
|
|
<h2 class="text-center" style="padding-left:75px; padding-right:75px;">List of bookmarks you have created </h2>
|
|
|
<hr>
|
|
<hr>
|
|
|
- <!------ List of bookmarks you have created ---------->
|
|
|
|
|
|
|
+ <!------ Download bookmark button ---------->
|
|
|
<form method="POST" target="_blank">
|
|
<form method="POST" target="_blank">
|
|
|
<input name="dl_bookml" value="dl_bookml" style="display:none;"/>
|
|
<input name="dl_bookml" value="dl_bookml" style="display:none;"/>
|
|
|
<button type="submit" class="btn btn-info">Download Bookmarks for backup</button>
|
|
<button type="submit" class="btn btn-info">Download Bookmarks for backup</button>
|
|
|
</form>
|
|
</form>
|
|
|
<br>
|
|
<br>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <!------ Bookmark list ---------->
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
{% for bg, bml in bdic.items(): %}
|
|
{% for bg, bml in bdic.items(): %}
|
|
|
<div class="col-md-6">
|
|
<div class="col-md-6">
|
|
@@ -190,28 +195,29 @@ body{
|
|
|
<h3 >{{ bg }}</h3>
|
|
<h3 >{{ bg }}</h3>
|
|
|
<hr>
|
|
<hr>
|
|
|
<!-- Code: Each Link in the Box-->
|
|
<!-- Code: Each Link in the Box-->
|
|
|
|
|
+ <!-------- Icon ---------->
|
|
|
{% for bm in bml: %}
|
|
{% for bm in bml: %}
|
|
|
<div class="row">
|
|
<div class="row">
|
|
|
<div class="col.md-4">
|
|
<div class="col.md-4">
|
|
|
<ul class="list">
|
|
<ul class="list">
|
|
|
<li><img src="static/sitecons/{{bm.icon}}" height=25 width=25> {{ bm.name }}</li>
|
|
<li><img src="static/sitecons/{{bm.icon}}" height=25 width=25> {{ bm.name }}</li>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="col.md-4" style="position:absolute; right:17px;">
|
|
|
|
|
- <li class="href_link_button">
|
|
|
|
|
|
|
+ <!-------- Link/Delete/Status---------->
|
|
|
|
|
+ <div class="col.md-4">
|
|
|
|
|
+ <li class="href_link_button" style="position:absolute; right:125px;">
|
|
|
<a href="{{ bm.link }}" TARGET="_BLANK">
|
|
<a href="{{ bm.link }}" TARGET="_BLANK">
|
|
|
<img src="static/logo/link_logo.png"width="30" height="30">
|
|
<img src="static/logo/link_logo.png"width="30" height="30">
|
|
|
</a>
|
|
</a>
|
|
|
- <form method="POST">
|
|
|
|
|
- <input name="web_delete" value="{{bm.id}}" style="display:none;"/>
|
|
|
|
|
- <button type="submit" class="btn btn-danger" style="padding: 3px; font-size: 6px; border-width: 3px;">Delete</button>
|
|
|
|
|
- </form>
|
|
|
|
|
- <b class="text_border"><i>{{ bm.status }}</i></b>
|
|
|
|
|
|
|
+ <form method="POST">
|
|
|
|
|
+ <input name="web_delete" value="{{bm.id}}" style="display:none;"/>
|
|
|
|
|
+ <button type="submit" class="btn btn-danger" style="padding: 3px; font-size: 6px; border-width: 3px;position:absolute; left:35px; bottom:0px">Delete</button>
|
|
|
|
|
+ </form>
|
|
|
|
|
+ <b class="text_border btn-outline-secondary"><i>{{ bm.status }}</i></b>
|
|
|
</li>
|
|
</li>
|
|
|
</ul>
|
|
</ul>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
- <!-- (End) Code: Each Link in the Box (End)-->
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<br>
|
|
<br>
|