|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>KUKapp</title>
|
|
|
|
|
<title>Meal planned for {{meal_date}} - KUKAPP</title>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
|
|
|
@ -13,6 +13,7 @@
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
background-color: #aeaeac;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
@ -29,7 +30,7 @@
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="next-meal">
|
|
|
|
|
<div class="right-pane">
|
|
|
|
|
<h1 style="padding-left: 40pt">Next Meal</h1>
|
|
|
|
|
<h2>Cook</h2>
|
|
|
|
|
<div class="cook-entry">
|
|
|
|
@ -67,11 +68,11 @@
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user-info">
|
|
|
|
|
<div class="user-card">
|
|
|
|
|
<img src="{{url_for('static', filename=current_user.name + '.png')}}">
|
|
|
|
|
<div class="user-card">
|
|
|
|
|
<img src="{{url_for('static', filename=current_user.name + '.png')}}">
|
|
|
|
|
<div class="user-info">
|
|
|
|
|
<span>{{current_user.name}}</span>
|
|
|
|
|
<div class="logout-button" onclick="location.href='/logout';"><span>LOGOUT</span></div>
|
|
|
|
|
<div class="rect-button" onclick="location.href='/logout';" style="background-color: #EE7500;">LOGOUT</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|