|
|
@@ -1,52 +0,0 @@
|
|
|
-<head>
|
|
|
- <meta charset="utf-8">
|
|
|
- <meta
|
|
|
- name="viewport"
|
|
|
- content="width=device-width, initial-scale=1"
|
|
|
- >
|
|
|
-
|
|
|
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"/>
|
|
|
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" crossorigin="anonymous"/>
|
|
|
- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
|
|
- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
|
|
- <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
|
|
-
|
|
|
- <title>{% block title %}Hometab{% endblock %}</title>
|
|
|
- <link rel = "icon" href =
|
|
|
- "static/logo/hometag_logo.png"
|
|
|
- type = "image/x-icon">
|
|
|
-</head>
|
|
|
-{% block modal %}
|
|
|
-<div class="modal" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
|
- <div class="modal-dialog" role="document">
|
|
|
- <div class="modal-content">
|
|
|
- <div class="modal-header">
|
|
|
- <h5 class="modal-title" id="exampleModalLabel">New message</h5>
|
|
|
- </div>
|
|
|
- <div class="modal-body">
|
|
|
- <form>
|
|
|
- <div class="form-group">
|
|
|
- <label for="recipient-name" class="col-form-label">Recipient:</label>
|
|
|
- <input type="text" class="form-control" id="recipient-name">
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label for="message-text" class="col-form-label">Message:</label>
|
|
|
- <textarea class="form-control" id="message-text"></textarea>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <div class="modal-footer">
|
|
|
- <a href="{{url_for('logic.home')}}" class="btn btn-primary">Pop Up Mod</a>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-{% endblock %}
|
|
|
-{% block script %}
|
|
|
-<script>
|
|
|
-$(document).ready(function(){
|
|
|
- console.log("Windows is loaded")
|
|
|
- $("#exampleModal").modal("show")
|
|
|
-})
|
|
|
-</script>
|
|
|
-{% endblock %}
|