mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Fix linter errors in the contact form
This commit is contained in:
parent
91515a6ca8
commit
8dcc8c3d08
1 changed files with 19 additions and 3 deletions
|
@ -11,9 +11,25 @@
|
||||||
<div class="col-12 col-md-8 offset-md-2">
|
<div class="col-12 col-md-8 offset-md-2">
|
||||||
<div id="contact-form">
|
<div id="contact-form">
|
||||||
<form action="#" method="POST" accept-charset="UTF-8" @submit.prevent="submit">
|
<form action="#" method="POST" accept-charset="UTF-8" @submit.prevent="submit">
|
||||||
<input type="text" v-model="form.name" name="name" placeholder="Name" />
|
<input
|
||||||
<input type="text" v-model="form.email" name="email" placeholder="Email" />
|
v-model="form.name"
|
||||||
<textarea name="message" v-model="form.message" placeholder="Message"></textarea>
|
name="name"
|
||||||
|
type="text"
|
||||||
|
placeholder="Name"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<input
|
||||||
|
v-model="form.email"
|
||||||
|
name="email"
|
||||||
|
type="text"
|
||||||
|
placeholder="Email"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<textarea
|
||||||
|
v-model="form.message"
|
||||||
|
name="message"
|
||||||
|
placeholder="Message">
|
||||||
|
</textarea>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
class="submit"
|
class="submit"
|
||||||
|
|
Loading…
Reference in a new issue