-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejemplo.html
108 lines (93 loc) · 4.33 KB
/
ejemplo.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootstrap Starter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav icon -->
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">
<form class="form-horizontal">
<fieldset>
<legend>Create Coderiser</legend>
<div class="control-group">
<label class="control-label">Name</label>
<div class="controls">
<input id="name" type="text" />
</div>
</div>
<div class="control-group">
<label class="control-label">Passions</label>
<div class="controls">
<label class="checkbox">
<input type="checkbox" class="passion" value="HTML" /> HTML
</label>
<label class="checkbox">
<input type="checkbox" class="passion" value="JavaScript" /> JavaScript
</label>
<label class="checkbox">
<input type="checkbox" class="passion" value="CSS" /> CSS
</label>
<label class="checkbox">
<input type="checkbox" class="passion" value="Design" /> Design
</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Avatar</label>
<div class="controls">
<input type="file" id="avatar" />
</div>
</div>
<div class="control-group">
<div class="controls">
<button id="create-coderiser" class="btn btn-primary">Create Coderiser</button>
</div>
</div>
</fieldset>
</form>
</div>
<div class="span6">
<button id="get-coderisers" class="btn btn-primary">Get Coderisers</button>
<div id="coderisers">
No hay coderisers!
</div>
</div>
</div>
</div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="bootstrap/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<!-- Load Stackmob Dependencies -->
<script type="text/javascript" src="http://static.stackmob.com/js/json2-min.js"></script>
<script type="text/javascript" src="http://static.stackmob.com/js/underscore-1.4.1-min.js"></script>
<script type="text/javascript" src="http://static.stackmob.com/js/backbone-0.9.2-min.js"></script>
<script type="text/javascript" src="http://static.stackmob.com/js/stackmob-js-0.6.0-min.js"></script
<!-- App scripts (Disable until they finnish their design) -->
<script type="text/javascript" src="ejemplo.js"></script>
</body>
</html>