-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (93 loc) · 4.61 KB
/
index.html
File metadata and controls
93 lines (93 loc) · 4.61 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" id="ng-app"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" data-framework="angularjs"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Gamecard, Munchkin, Counter, Card game">
<base href="/" />
<meta name="author" content="Fabian Torres">
<title>Munchkin - Cardgame counter</title>
<meta name="viewportina" content="height=device-height">
<!-- For third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x144-precomposed.png">
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="apple-touch-icon-120x120-precomposed.png">
<!-- For iPhone with high-resolution Retina display running iOS ≤ 6: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<!--[if IE]>
<link rel="shortcut icon" href="favicon.ico">
<![endif]-->
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body ng-controller="starting">
<div id="wrap-app">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img src="css/images/home/munchkin-title.jpg" /></a>
</div>
</div>
</div>
<!-- Begin page content -->
<div class="clearfix"></div>
<div class="container" ng-view></div>
</div>
<div id="footer">
<div class="container">
<p class="text-muted credit">
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#newPlayer">
<span class="glyphicon glyphicon-plus-sign"></span> Add Player
</button>
</p>
</div>
</div>
<div class="modal fade" id="newPlayer" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form role="form" name="formAddUser" ng-submit="newPlayer()">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Add a new player</h4>
</div>
<div class="modal-body row">
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3"></div>
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<div class="form-group" ng-class="{error: myForm.name.$invalid}">
<label for="username">Player name:</label>
<input type="text" name="name" class="form-control" ng-model="player.name" required placeholder="Player name"/>
</div>
<div class="form-group">
<div class="radio-inline">
<label>
<input type="radio" name="optionsRadios" ng-model="player.gender" value="male" checked="checked">Male
</label>
</div>
<div class="radio-inline">
<label>
<input type="radio" name="optionsRadios" ng-model="player.gender" value="female">Female
</label>
</div>
</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3"></div>
</div>
<div class="modal-footer" style="display:none">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary" ng-disabled="formAddUser.$invalid">Create</button>
</div>
</form>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<script data-main="js/config" src="js/libs/vendor/require/require.min.js"></script>
</body>
</html>