-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
48 lines (37 loc) · 1.35 KB
/
resume.html
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
45
46
47
48
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Angular-xeditable Starter Template</title>
<!-- Bootstrap 3 css -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body style="padding: 20px">
<h2>Signup</h2>
<lable for="account"></lable>
<input id="account" type="text">
<lable for="pwd"></lable>
<input id="pwd" type="password">
<button type="submit" id="registerSmtBtn">Signup</button>
<h2>登入</h2>
<lable for="accountL"></lable>
<input id="accountL" type="text">
<lable for="pwdL"></lable>
<input id="pwdL" type="password">
<button type="submit" id="loginSmtBtn">Login</button>
<h2>登出</h2>
<button id="signoutSmtBtn">Signout</button>
<h2>電子郵件驗證</h2>
<button id="verifyBtn">Verify</button>
<h2>更改密碼</h2>
<label for="chgPwd">Email</label>
<input id="chgPwd" type="text">
<button id="chgPwdBtn">ChangePwd</button>
<h2>Facebook登入</h2>
<button id="fbLoginBtn">FB Login</button>
<script src="https://www.gstatic.com/firebasejs/3.5.2/firebase.js"></script>
<!-- app.js -->
<script src="scripts/app.js"></script>
</body>
</html>