sign-up.html 1.1 KB
Newer Older
C
codecalm 已提交
1 2 3
<form class="card card-md" action="{{ site.base }}" method="get">
	<div class="card-body">
		<h2 class="mb-5 text-center">Create new account</h2>
4 5 6 7 8 9 10 11 12 13 14

		<div class="mb-3">
			<label class="form-label">Name</label>
			<input type="text" class="form-control" placeholder="Enter name">
		</div>
		<div class="mb-3">
			<label class="form-label">Email address</label>
			<input type="email" class="form-control" placeholder="Enter email">
		</div>
		<div class="mb-3">
			<label class="form-label">Password</label>
C
codecalm 已提交
15
			{% include ui/form/input-group.html type="password" append-button="eye:Show password" flat=true placeholder="Password" %}
16 17 18 19
		</div>
		<div class="mb-3">
			<label class="form-check">
				<input type="checkbox" class="form-check-input"/>
C
codecalm 已提交
20
				<span class="form-check-label">Agree the <a href="{{ site.base }}" tabindex="-1">terms and policy</a>.</span>
21 22 23 24 25 26 27 28 29 30 31 32
			</label>
		</div>

		<div class="form-footer">
			<button type="submit" class="btn btn-primary btn-block">Create new account</button>
		</div>
	</div>
</form>

<div class="text-center text-muted">
	Already have account? <a href="{{ site.base }}/sign-in.html" tabindex="-1">Sign in</a>
</div>