first commit
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>Flowers</title>
|
||||
|
||||
<!-- link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
|
||||
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/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 -->
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<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">
|
||||
|
||||
<input type="text" id="search" placeholder="search..." value="">
|
||||
<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>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div class="pure-g">
|
||||
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-5">
|
||||
|
||||
</div>
|
||||
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-3-5">
|
||||
<table id="flowerlist" class="flowerlist pure-table pure-table-horizontal">
|
||||
|
||||
<tr class="flowerlist">
|
||||
<td class="flowerlist">
|
||||
<a href='www.google.com'>
|
||||
org2, login2
|
||||
</a>
|
||||
</td>
|
||||
<td class="right"><span style="white-space: nowrap;">2016-11-30</span></td>
|
||||
</tr>
|
||||
|
||||
<tr class="flowerlist">
|
||||
<td class="flowerlist>
|
||||
<a href="javascript:DoSubmit('show', 'RABO creditcard', '2001-03-17 13:24:07' , '')">
|
||||
RABO creditcard,
|
||||
</a>
|
||||
</td>
|
||||
<td class="right"><span style="white-space: nowrap;">2001-03-17</span></td>
|
||||
</tr>
|
||||
|
||||
<tr class="flowerlist">
|
||||
<td class="flowerlist>
|
||||
<a href="javascript:DoSubmit('show', 'ABN AMRO creditcard', '2001-03-17 13:23:25' , '')">
|
||||
ABN AMRO creditcard, 5422 2300 0373 7907
|
||||
</a>
|
||||
</td>
|
||||
<td class="right"><span style="white-space: nowrap;">2001-03-17</span></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="l-box pure-u-1 pure-u-md-1-2 pure-u-lg-1-5">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- script language="javascript">
|
||||
|
||||
var $rows = $('#flowerlist tr');
|
||||
$('#search').keyup(function() {
|
||||
var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
|
||||
|
||||
$rows.show().filter(function() {
|
||||
var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
|
||||
return !~text.indexOf(val);
|
||||
}).hide();
|
||||
});
|
||||
|
||||
$('#search').keyup();
|
||||
|
||||
</script -->
|
||||
|
||||
|
||||
|
||||
<form id="gotopage" action="/app" method="POST">
|
||||
<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 -->
|
||||
|
||||
|
||||
|
||||
<div class="footer l-box is-center">
|
||||
Thank you for using the flowershop.
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user