We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06fe5a9 commit b9f1f3eCopy full SHA for b9f1f3e
src/pages/user/signup.vue
@@ -4,23 +4,24 @@
4
<dl>
5
<dt class="SignUp-ItemTitle">お名前(表示名)</dt>
6
<dd>
7
- <input-field label="name" placeholder="山田花子" />
+ <input-field label="name" placeholder="山田花子" require />
8
</dd>
9
<dt class="SignUp-ItemTitle">メールアドレス</dt>
10
11
<input-field
12
label="email"
13
placeholder="[email protected]"
14
type="email"
15
+ require
16
/>
17
18
<dt class="SignUp-ItemTitle">パスワード</dt>
19
- <input-field label="password" type="password" />
20
+ <input-field label="password" type="password" require />
21
22
<dt class="SignUp-ItemTitle">パスワード(確認用)</dt>
23
- <input-field label="confirmation" type="password" />
24
+ <input-field label="confirmation" type="password" require />
25
26
</dl>
27
</template>
0 commit comments