28 lines
739 B
PHP
28 lines
739 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Daily Goals - Home</title>
|
|
</head>
|
|
<body>
|
|
<h1>Home</h1>
|
|
<button id="logout">Logout</button>
|
|
<ul id="texts-list">
|
|
</ul>
|
|
<div id="create-plan-modal" hidden>
|
|
<h2>Create plan</h2>
|
|
<label>Name
|
|
<input class="plan-name" type="text" />
|
|
</label>
|
|
<label>Start date
|
|
<input class="plan-date-start" type="date" />
|
|
</label>
|
|
<label>End date
|
|
<input class="plan-date-end" type="date" />
|
|
</label>
|
|
<button class="save-plan">Save</button>
|
|
<button class="cancel-plan">Cancel</button>
|
|
</div>
|
|
<script src="/js/auth.js"></script>
|
|
<script src="/js/home.js"></script>
|
|
</body>
|
|
</html>
|