|
@@ -5,62 +5,60 @@
|
|
|
<div class="container py-3 h-100">
|
|
<div class="container py-3 h-100">
|
|
|
<div class="row d-flex justify-content-center align-items-center h-100">
|
|
<div class="row d-flex justify-content-center align-items-center h-100">
|
|
|
<div class="col col-xl-10">
|
|
<div class="col col-xl-10">
|
|
|
- <div class="row g-0">
|
|
|
|
|
- <div class="col-md-6 col-lg-5 d-none d-md-block">
|
|
|
|
|
- <img
|
|
|
|
|
- src="/static/logo/bookmark_logo.png"
|
|
|
|
|
- alt="bookmark_logo"
|
|
|
|
|
- style="width: 1000px;"
|
|
|
|
|
- />
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="col-md-6 col-lg-7 d-flex align-items-center">
|
|
|
|
|
- <div class="card-body p-4 p-lg-5 text-black">
|
|
|
|
|
-
|
|
|
|
|
- <form method="POST" enctype="multipart/form-data">
|
|
|
|
|
-
|
|
|
|
|
- <div class="d-flex align-items-center mb-3 pb-1">
|
|
|
|
|
- <span class="h1 fw-bold mb-0">Create your bookmark</span>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="form-outline mb-4">
|
|
|
|
|
- <label class="form-label" for="web_link">Website Link</label>
|
|
|
|
|
- <input type="text" name="web_link" class="form-control form-control-lg" />
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="form-outline mb-4">
|
|
|
|
|
- <label class="form-label" for="web_name">Name</label>
|
|
|
|
|
- <input type="text" name="web_name" class="form-control form-control-lg" />
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="row g-0">
|
|
|
|
|
+ <div class="col-md-6 col-lg-5 d-none d-md-block">
|
|
|
|
|
+ <img
|
|
|
|
|
+ src="/static/logo/bookmark_logo.png"
|
|
|
|
|
+ alt="bookmark_logo"
|
|
|
|
|
+ style="width: 1000px;"
|
|
|
|
|
+ />
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-md-6 col-lg-7 d-flex align-items-center">
|
|
|
|
|
+ <div class="card-body p-4 p-lg-5 text-black">
|
|
|
|
|
+
|
|
|
|
|
+ <form method="POST" enctype="multipart/form-data">
|
|
|
|
|
+
|
|
|
|
|
+ <div class="d-flex align-items-center mb-3 pb-1">
|
|
|
|
|
+ <span class="h1 fw-bold mb-0">Create your bookmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="form-outline mb-4">
|
|
|
|
|
+ <label class="form-label" for="web_link">Website Link</label>
|
|
|
|
|
+ <input type="text" name="web_link" class="form-control form-control-lg" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="form-outline mb-4">
|
|
|
|
|
+ <label class="form-label" for="web_name">Name</label>
|
|
|
|
|
+ <input type="text" name="web_name" class="form-control form-control-lg" />
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="form-outline mb-4">
|
|
|
|
|
+ <label class="form-label" for="web_group">Existing Groups</label><br>
|
|
|
|
|
+ <select name="web_group" style="padding-right: 30px;">
|
|
|
|
|
+ <option value="cng-555">Create new group:</option>
|
|
|
|
|
+ {% for bg in bgroups %}
|
|
|
|
|
+ <option name="web_group" value="{{ bg.group }}">{{ bg.group }}</option>
|
|
|
|
|
+ {% endfor %}
|
|
|
|
|
+ </select>
|
|
|
|
|
+ <input type="text" name="new_group" style='position:relative; left:40px; padding-right: 0px;' placeholder="Name new group here"/>
|
|
|
|
|
+ </div>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="form-outline mb-4">
|
|
|
|
|
+ <label class="form-label" for="share_public_private">Is this a Public or Private bookmark?</label><br>
|
|
|
|
|
+ <input type="radio" id="share_public_private" name="share_public_private" value="public" checked="checked" >
|
|
|
|
|
+ <label for="Public">Public</label><br>
|
|
|
|
|
+ <input type="radio" id="share_public_private" name="share_public_private" value="private">
|
|
|
|
|
+ <label for="Private">Private</label><br>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <div class="form-outline mb-4">
|
|
|
|
|
- <label class="form-label" for="web_group">Existing Groups</label><br>
|
|
|
|
|
- <select name="web_group" style="padding-right: 30px;">
|
|
|
|
|
- <option value="cng-555">Create new group:</option>
|
|
|
|
|
- {% for bg in bgroups %}
|
|
|
|
|
- <option name="web_group" value="{{ bg.group }}">{{ bg.group }}</option>
|
|
|
|
|
- {% endfor %}
|
|
|
|
|
- </select>
|
|
|
|
|
- <input type="text" name="new_group" style='position:relative; left:40px; padding-right: 0px;' placeholder="Name new group here"/>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div class="form-outline mb-4">
|
|
|
|
|
- <label class="form-label" for="share_public_private">Is this a Public or Private bookmark?</label><br>
|
|
|
|
|
- <input type="radio" id="share_public_private" name="share_public_private" value="public" checked="checked" >
|
|
|
|
|
- <label for="Public">Public</label><br>
|
|
|
|
|
- <input type="radio" id="share_public_private" name="share_public_private" value="private">
|
|
|
|
|
- <label for="Private">Private</label><br>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="pt-1 mb-4">
|
|
|
|
|
+ <button class="btn btn-dark btn-lg btn-block" type="submit">Create</button>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- <div class="pt-1 mb-4">
|
|
|
|
|
- <button class="btn btn-dark btn-lg btn-block" type="submit">Create</button>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- </form>
|
|
|
|
|
-
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ </form>
|
|
|
</div>
|
|
</div>
|
|
|
- </div>>
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|