Reformat
This commit is contained in:
@@ -88,20 +88,11 @@
|
||||
{#if !preFlight && !isDone}
|
||||
<p>
|
||||
Any data that you enter here will be visible publicly
|
||||
<a href="https://git.fjla.uk/OwlBoard/backend/issues" target="_blank"
|
||||
>here</a
|
||||
>
|
||||
</p>
|
||||
<p>
|
||||
You will be shown all of the collected data before the form is submitted.
|
||||
<a href="https://git.fjla.uk/OwlBoard/backend/issues" target="_blank">here</a>
|
||||
</p>
|
||||
<p>You will be shown all of the collected data before the form is submitted.</p>
|
||||
<form on:submit={submit}>
|
||||
<select
|
||||
class="formInputs"
|
||||
name="type"
|
||||
bind:value={reportType}
|
||||
placeholder="Choose Category"
|
||||
>
|
||||
<select class="formInputs" name="type" bind:value={reportType} placeholder="Choose Category">
|
||||
<option value="" disabled selected>Choose an Issue Type</option>
|
||||
<option value="bug">Problem</option>
|
||||
<option value="enhancement">Feature Request</option>
|
||||
@@ -109,18 +100,9 @@
|
||||
<option value="user-support">Unable to sign up</option>
|
||||
</select>
|
||||
<br />
|
||||
<input
|
||||
class="formInputs"
|
||||
type="text"
|
||||
bind:value={reportSubject}
|
||||
placeholder="Subject"
|
||||
/>
|
||||
<input class="formInputs" type="text" bind:value={reportSubject} placeholder="Subject" />
|
||||
<br />
|
||||
<textarea
|
||||
class="formInputs"
|
||||
bind:value={reportMsg}
|
||||
placeholder="Enter your message..."
|
||||
/>
|
||||
<textarea class="formInputs" bind:value={reportMsg} placeholder="Enter your message..." />
|
||||
<br />
|
||||
<button type="submit">Submit</button>
|
||||
<button type="reset">Reset</button>
|
||||
|
||||
Reference in New Issue
Block a user