-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.php
44 lines (42 loc) · 2.21 KB
/
sign-up.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<title>Sigh up</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS v5.0.2 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<form action="" method="post">
<h1 class="text-center">帳號註冊</h1>
<div class="mb-3">
<label for="account">帳號</label>
<input id="account" type="text" name="account" class="form-control" >
</div>
<div class="mb-3">
<label for="email">email</label>
<input id="email" type="email" name="email" class="form-control" >
</div>
<div class="mb-3">
<label for="password">密碼</label>
<input id="password" type="password" name="password" class="form-control" >
</div>
<div class="mb-3">
<label for="repassword">確認密碼</label>
<input id="repassword" type="password" name="repassword" class="form-control" >
</div>
<button class="btn btn-primary" type="submit">送出</button>
</form>
</div>
</div>
</div>
<!-- Bootstrap JavaScript Libraries -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>