22 lines
704 B
HTML
22 lines
704 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
|
|
<link rel="stylesheet" href="/resources/demos/style.css">
|
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
|
<script>
|
|
$( function() { $( "#tabs" ).tabs(); } );
|
|
</script>
|
|
<title>Loan Management</title>
|
|
</head>
|
|
<body>
|
|
<p id="header" align="center"><font face="Arial" size=+2 >Web Mortgage Manager</font></p>
|
|
|
|
<table border="1px">
|
|
{% for message in messages %}
|
|
<tr><td>{{message}}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
<a href="/?loan={{filename}}">Return to Main Screen</a>.
|
|
</body>
|
|
</html> |