diff options
Diffstat (limited to 'web/pw-server/src/lib/components/SubmitPane.svelte')
-rw-r--r-- | web/pw-server/src/lib/components/SubmitPane.svelte | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/web/pw-server/src/lib/components/SubmitPane.svelte b/web/pw-server/src/lib/components/SubmitPane.svelte new file mode 100644 index 0000000..eb4d3e4 --- /dev/null +++ b/web/pw-server/src/lib/components/SubmitPane.svelte @@ -0,0 +1,31 @@ +<script lang="ts"> + import { createEventDispatcher } from "svelte"; + + const dispatch = createEventDispatcher(); + + function submit() { + dispatch("submit"); + } +</script> + +<div class="submit-pane"> + Submit your bot to play a match + <button class="play-button" on:click={submit}>Submit</button> +</div> + +<style lang="scss"> + .submit-pane { + margin: 20px auto; + } + + .play-button { + padding: 8px 16px; + border-radius: 8px; + border: 0; + font-size: 18pt; + display: block; + margin: 20px auto; + background-color: lightgreen; + cursor: pointer; + } +</style> |