|
|
@ -71,17 +71,17 @@ |
|
|
|
|
|
|
|
<textarea |
|
|
|
placeholder="Description" |
|
|
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2" |
|
|
|
class="block w-full rounded border border-slate-400 px-3 py-2" |
|
|
|
rows="5" |
|
|
|
v-model="fullClaim.description" |
|
|
|
maxlength="5000" |
|
|
|
></textarea> |
|
|
|
<div class="text-xs text-slate-500 italic -mt-3 mb-4"> |
|
|
|
<div class="text-xs text-slate-500 italic"> |
|
|
|
If you want to be contacted, be sure to include your contact information |
|
|
|
-- just remember that this information is public and saved in a public |
|
|
|
history. |
|
|
|
</div> |
|
|
|
<div class="text-xs text-slate-500 italic -mt-3 mb-4"> |
|
|
|
<div class="text-xs text-slate-500 italic"> |
|
|
|
{{ fullClaim.description?.length }}/5000 max. characters |
|
|
|
</div> |
|
|
|
|
|
|
@ -89,55 +89,55 @@ |
|
|
|
v-model="fullClaim.url" |
|
|
|
placeholder="Website" |
|
|
|
autocapitalize="none" |
|
|
|
class="block w-full rounded border border-slate-400 mb-4 px-3 py-2" |
|
|
|
class="block w-full rounded border border-slate-400 mt-4 px-3 py-2" |
|
|
|
/> |
|
|
|
|
|
|
|
<div class="flex mb-4 columns-3 w-full"> |
|
|
|
<div class="col-span-1 w-full flex justify-center items-center"> |
|
|
|
<span>Starts At</span> |
|
|
|
<div> |
|
|
|
<div class="flex items-center mt-4"> |
|
|
|
<span class="mr-2">Starts At</span> |
|
|
|
<input |
|
|
|
v-model="startDateInput" |
|
|
|
placeholder="Start Date" |
|
|
|
type="date" |
|
|
|
class="rounded border border-slate-400 px-3 py-2" |
|
|
|
/> |
|
|
|
<input |
|
|
|
:disabled="!startDateInput" |
|
|
|
placeholder="Start Time" |
|
|
|
v-model="startTimeInput" |
|
|
|
type="time" |
|
|
|
class="rounded border border-slate-400 ml-2 px-3 py-2" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<input |
|
|
|
v-model="startDateInput" |
|
|
|
placeholder="Start Date" |
|
|
|
type="date" |
|
|
|
class="col-span-1 w-full rounded border border-slate-400 px-3 py-2" |
|
|
|
/> |
|
|
|
<input |
|
|
|
:disabled="!startDateInput" |
|
|
|
placeholder="Start Time" |
|
|
|
v-model="startTimeInput" |
|
|
|
type="time" |
|
|
|
class="col-span-1 w-full rounded border border-slate-400 ml-2 px-3 py-2" |
|
|
|
/> |
|
|
|
<span class="col-span-1 w-full flex justify-center items-center"> |
|
|
|
{{ zoneName }} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="flex mb-4 columns-3 w-full"> |
|
|
|
<div class="col-span-1 w-full flex justify-center items-center"> |
|
|
|
<span>Ends at</span> |
|
|
|
<div class="flex w-full justify-end items-center"> |
|
|
|
<span class="w-full flex justify-end items-center"> |
|
|
|
{{ zoneName }} time zone |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="flex items-center"> |
|
|
|
<div class="mr-2"> |
|
|
|
<span>Ends at</span> |
|
|
|
</div> |
|
|
|
<input |
|
|
|
v-model="endDateInput" |
|
|
|
placeholder="End Date" |
|
|
|
type="date" |
|
|
|
class="ml-2 rounded border border-slate-400 px-3 py-2" |
|
|
|
/> |
|
|
|
<input |
|
|
|
:disabled="!endDateInput" |
|
|
|
placeholder="End Time" |
|
|
|
v-model="endTimeInput" |
|
|
|
type="time" |
|
|
|
class="rounded border border-slate-400 ml-2 px-3 py-2" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<input |
|
|
|
v-model="endDateInput" |
|
|
|
placeholder="End Date" |
|
|
|
type="date" |
|
|
|
class="col-span-1 w-full rounded border border-slate-400 px-3 py-2" |
|
|
|
/> |
|
|
|
<input |
|
|
|
:disabled="!endDateInput" |
|
|
|
placeholder="End Time" |
|
|
|
v-model="endTimeInput" |
|
|
|
type="time" |
|
|
|
class="col-span-1 w-full rounded border border-slate-400 ml-2 px-3 py-2" |
|
|
|
/> |
|
|
|
<span class="col-span-1 w-full flex justify-center items-center"> |
|
|
|
{{ zoneName }} |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div |
|
|
|
class="flex items-center mb-4" |
|
|
|
class="flex items-center mt-4" |
|
|
|
@click="includeLocation = !includeLocation" |
|
|
|
> |
|
|
|
<input type="checkbox" class="mr-2" v-model="includeLocation" /> |
|
|
|