mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-22 13:24:31 +01:00
Madeorsk
5ac9b5d0e4
* Finished Home page behavior; * Started Poll (just the title for now); * Changed POST /polls return code to 206 (CREATED); + Add a configuration file (only app_url inside of it for now).
26 lines
855 B
PHP
26 lines
855 B
PHP
<body class="home">
|
|
<script src="/static/js/fetch.min.js"></script>
|
|
<script src="/static/js/new.js"></script>
|
|
|
|
<h1>Poll Verlaine</h1>
|
|
<main>
|
|
<form action="#" id="newpoll">
|
|
<input type="text" name="title" placeholder="What do you want to ask?" />
|
|
<div id="choices">
|
|
</div>
|
|
<button type="button" id="add-choice">New choice</button>
|
|
<input type="submit" value="Create poll" />
|
|
</form>
|
|
<div id="result" hidden>
|
|
<p>Your poll <strong>:poll_title</strong> is ready!</p>
|
|
<input type="text" name="pollurl" value="<?= $app_url ?>:poll_url" />
|
|
<a class="button" href=":poll_url">See the poll!</a>
|
|
</div>
|
|
</main>
|
|
|
|
<template id="choice">
|
|
<input type="text" id="choice-:id" placeholder="Another choice" />
|
|
<button type="button" class="delete" tabindex="-1" title="Delete" aria-label="Delete">✕</button>
|
|
</template>
|
|
|
|
</body> |