-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -690,33 +690,31 @@ | |
<div class="modal-body"> | ||
<form class="mb-8 needs-validation" novalidate> | ||
<div class="mb-6"> | ||
<label for="userEmail" class="form-label">信箱帳號</label> | ||
<label for="userEmailSignIn" class="form-label">信箱帳號</label> | ||
<input | ||
type="email" | ||
name="input email" | ||
id="userEmail" | ||
class="form-control is-invalid text-dark py-2" | ||
id="userEmailSignIn" | ||
class="form-control text-dark py-2" | ||
placeholder="[email protected]" | ||
required | ||
/> | ||
<div class="invalid-feedback">請輸入正確格式的email帳號</div> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="userPassword" class="form-label">密碼</label> | ||
<label for="userPasswordSignIn" class="form-label">密碼</label> | ||
<input | ||
type="password" | ||
name="input email" | ||
name="input passwordSignIn" | ||
id="userPassword" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="請輸入密碼" | ||
required | ||
/> | ||
<div class="invalid-feedback">請輸入八位數中英文大小寫密碼</div> | ||
</div> | ||
<button | ||
class="btn btn-secondary text-center w-100" | ||
data-bs-toggle="modal" | ||
data-bs-dismiss="modal" | ||
type="submit" | ||
> | ||
登入 | ||
</button> | ||
|
@@ -777,19 +775,18 @@ | |
type="text" | ||
name="input email" | ||
id="userName" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="王小明" | ||
required | ||
/> | ||
<div class="invalid-feedback">此為必填項目</div> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="userNickName" class="form-label">暱稱</label> | ||
<input | ||
type="text" | ||
name="input email" | ||
name="input nickname" | ||
id="userNickName" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="Emily453" | ||
required | ||
/> | ||
|
@@ -801,33 +798,31 @@ | |
type="email" | ||
name="input email" | ||
id="userEmail" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="[email protected]" | ||
required | ||
/> | ||
<div class="invalid-feedback">請輸入正確格式的email帳號</div> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="userPassword" class="form-label">密碼</label> | ||
<input | ||
type="password" | ||
name="input email" | ||
name="input password" | ||
id="userPassword" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="請輸入密碼" | ||
required | ||
/> | ||
<div class="invalid-feedback">請輸入八位數中英文大小寫密碼</div> | ||
</div> | ||
<div class="mb-6"> | ||
<label for="userPassword2" class="form-label" | ||
>再次輸入密碼確認</label | ||
> | ||
<input | ||
type="password" | ||
name="input email" | ||
name="input password" | ||
id="userPassword2" | ||
class="form-control is-invalid text-dark py-2" | ||
class="form-control text-dark py-2" | ||
placeholder="請輸入密碼" | ||
required | ||
/> | ||
|