2025-03-25 20:32:26 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
|
|
|
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
|
|
|
|
|
|
|
|
|
|
<title>{% block title %}Flowers{% endblock %}</title>
|
|
|
|
|
|
|
|
|
|
<!-- link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css" -->
|
2026-01-23 23:26:00 +01:00
|
|
|
<link rel="stylesheet" href="static/pure-min.css">
|
|
|
|
|
<link rel="stylesheet" href="static/grids-responsive-min.css">
|
|
|
|
|
<link rel="stylesheet" href="static/font-awesome.css">
|
|
|
|
|
<link rel=stylesheet type=text/css href="static/marketing.css">
|
|
|
|
|
<link rel=stylesheet type=text/css href="static/flower.css">
|
|
|
|
|
<script type="text/javascript" src="static/jquery-min.js"></script>
|
2025-03-25 20:32:26 +00:00
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
{% block headandmenu %}
|
|
|
|
|
|
|
|
|
|
<div class="header">
|
|
|
|
|
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
|
|
|
|
<a class="pure-menu-heading" href="">Flowers</a>
|
|
|
|
|
|
|
|
|
|
<ul class="pure-menu-list">
|
|
|
|
|
{% block menuoptions %}
|
|
|
|
|
<input type="text" id="search" placeholder="search..." value="{{filter}}">
|
|
|
|
|
<li class="pure-menu-item pure-menu-selected"><a href="javascript:DoSubmit('new')" class="pure-menu-link">New</a></li>
|
|
|
|
|
<li class="pure-menu-item"><a href="javascript:DoSubmit('logout')" class="pure-menu-link">Logout</a></li>
|
|
|
|
|
<li class="pure-menu-item"><a href="javascript:DoSubmit('rehush')" class="pure-menu-link">Password</a></li>
|
|
|
|
|
{% endblock menuoptions %}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock headandmenu %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2026-01-23 23:26:00 +01:00
|
|
|
<form id="gotopage" action="{{ url_for('flower_vase.application') }}" method="POST">
|
2025-03-25 20:32:26 +00:00
|
|
|
<input type="hidden" id="_action" name="action" value="">
|
|
|
|
|
<input type="hidden" id="_organization" name="organization" value="">
|
|
|
|
|
<input type="hidden" id="_myid" name="myid" value="">
|
|
|
|
|
<input type="hidden" id="_datetime" name="datetime" value="">
|
|
|
|
|
<input type="hidden" id="_filter" name="filter" value="">
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<script language="javascript">
|
|
|
|
|
|
|
|
|
|
function DoSubmit(action, org, datetime, filter) {
|
|
|
|
|
$('#_action').val(action);
|
|
|
|
|
$('#_organization').val(org);
|
|
|
|
|
$('#_datetime').val(datetime);
|
|
|
|
|
$('#_filter').val( $('#search').val() );
|
|
|
|
|
$('#gotopage').submit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
|
<div class="footer l-box is-center">
|
|
|
|
|
Thank you for using the flowershop.
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|