mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Fix some linter errors in the subscription form
This commit is contained in:
parent
4e5f09697b
commit
4952ec27c0
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@
|
|||
<div class="subscription-form-section-component">
|
||||
<form action="#" method="POST" accept-charset="UTF-8" @submit.prevent="submit">
|
||||
<div class="notification" :class="[ notifyStatus, { visible: notifyStatus !== '' } ]">{{ notifyText }}</div>
|
||||
<input type="text" v-model="form.email" name="email" placeholder="Email" />
|
||||
<input type="text" v-model="form.name" name="name" placeholder="Name" />
|
||||
<input v-model="form.email" type="text" name="email" placeholder="Email" />
|
||||
<input v-model="form.name" type="text" name="name" placeholder="Name" />
|
||||
<input type="submit" name="submit" value="Subscribe" />
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue