-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·50 lines (49 loc) · 2.15 KB
/
index.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
49
50
<!DOCTYPE html>
<html ng-app>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Quadrow</title>
<meta name="description" content="A better way to connect four...">
<meta name="viewport" content="width=device-width">
<meta name="robots" content="all">
<meta name="keywords" content="quadrow,aerodeck,mobile,connect,four,node, ios, iphone, androis, web, connect-four, connect four, nodejs">
<link rel="canonical" href="index.html">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src='js/angular.min.js'></script>
<script src='js/kinetic-v4.3.1.min.js'></script>
<script src='js/jquery-1.9.0.min.js'></script>
<script src='js/service.js'></script>
</head>
<body bgcolor='#222'>
<div id='container'>
<div id='canvas'>
</div>
<div ng-controller="loginController" id='login'>
<form ng-submit='usersQueryGET()' method='POST'>
<input type='text' required ng-model='username' id='username_login' placeholder='username' />
<br>
<input type='password' required ng-model='password' id='password_login' placeholder='password' />
<br>
<input type='submit' id='submit_login' value='Login' />
</form>
</div>
<div ng-controller="signupController" id='signup'>
<form ng-submit='usersPOST()' method='POST'>
<input type='text' id='fullName_signup' required ng-model='user.fullName' placeholder='your name' />
<br>
<input type='text' id='username_signup' required ng-model='user.username' placeholder='username' />
<br>
<input type='text' id='email_signup' required ng-model='user.email' placeholder='email' />
<br>
<input type='password' id='password_signup' required ng-model='user.password' placeholder='password' />
<br>
<input type='submit' id='submit_signup' value='Signup' />
</form>
</div>
<script src='js/resize.js'></script>
<script src='js/main.js'></script>
</div>
</body>
</html>