-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.htm
69 lines (58 loc) · 2.82 KB
/
signup.htm
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<!--#include virtual="/header.shtml" -->
<title>Sign Up | KTDash.app</title>
<meta name="description" content="Sign Up | KTDash.app">
<meta name="keywords" content="sign up, register, killteam, Kill Team, kill team roster builder, Octarius, Warhammer, 40000, 40k, wh40k, Roster, Battle Scribe, Printable, Card, Datacard, KTDash, dashboard">
<!-- OpenGraph Tags -->
<meta property="og:url" content="https://ktdash.app/signup.htm">
<meta property="og:type" content="website">
<meta property="og:title" content="Sign Up | KTDash.app">
<meta property="og:description" content="Sign Up | KTDash.app">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="ktdash.app">
<meta property="twitter:url" content="https://ktdash.app/signup.htm">
<meta name="twitter:title" content="Sign Up | KTDash.app">
<meta name="twitter:description" content="Sign Up | KTDash.app">
<style>
<!--#include virtual="/css/styles.css" -->
</style>
</head>
<body ng-app="kt" ng-controller="ktCtrl" ng-init="initSession();initSignUp();">
<!--#include virtual="/topnav.shtml" -->
<h1 class="orange"><i class="fas fa-user fa-fw"></i> Sign Up</h1>
<!-- Show the sign up form -->
<div class="container">
<form class="frmregister" ng-submit="signUp();">
<h5><label for="username">UserName</label></h5>
<input type="text" name="username" id="username" class="form-control" ng-model="signUpForm.userName" placeholder="User Name" required autofocus>
<em>The name you will be known by, this will be shown on your rosters page. Please don't use an email address as your user name.</em>
<br/>
<br/>
<h5><label for="password">Password</label></h5>
<input type="password" name="password" id="password" class="form-control" ng-model="signUpForm.password" placeholder="Password" required>
<h5><label for="confirmpassword">Confirm Password</label></h5>
<input type="password" name="confirmpassword" id="confirmpassword" class="form-control" ng-model="signUpForm.confirmPassword" placeholder="Confirm Password" required>
<em>There is no password reset process, so make sure to choose a password you will remember!</em>
<br/>
<br/>
<button class="btn btn-primary" type="submit">Sign Up</button>
<br />
<br />
Already have an account?
<a href="/login.htm">Log In here!</a>
<h3 class="center" ng-show="loading">
<i class="fas fa-undo-alt fa-fw rotate" ></i>
<br />
Signing Up...
</h3>
<div class="alert alert-danger" ng-show="signUpForm.error != null">
{{signUpForm.error}}
</div>
</form>
</div>
<!--#include virtual="/footer.shtml" -->
</body>
</html>