-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmyPage.html
More file actions
158 lines (142 loc) · 3.71 KB
/
myPage.html
File metadata and controls
158 lines (142 loc) · 3.71 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<title>crf Example</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<style>
body {
padding-top: 10px;
padding-bottom: 40px;
background-color: #eee;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.media.list-group-item {
margin-top: 0px;
}
.previewImage {
height: 100px;
width: 100px;
}
.badge.commit{
background: #5599FF;
}
.badge.complete{
background: #00AA55;
}
.badge.run{
background: #BBBB00;
}
.buttonPanel{
margin-top: 20px;
}
#login{
margin-top: 20px;
width: 80%; margin: 0 auto;
max-width: 800px;
}
.panel{
width: 80%; margin: 20px auto 10px auto;
max-width: 800px;
}
</style>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>
<body class="home page" style="background: url(http://riot.design/assets/img/bg-about.jpg)">
<div class="buttonPanel">
<button id="login" class="btn btn-lg btn-primary btn-block" type="submit">Upload</button>
</div>
<div class="panel panel-default " style="">
<div class="panel-heading "> <h3 class="panel-title">My Jobs</h3> </div>
<div class="list-group">
<div class="media list-group-item">
<span class="badge commit">Commit</span>
<div class="media-left" >
<a href="#">
<img class="media-object previewImage" src="..." alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">File: aa.txt</h4>
<div>Status:</div>
<div>Date:</div>
</div>
</div>
<div class="media list-group-item">
<span class="badge complete">complete</span>
<div class="media-left" >
<a href="#">
<img class="media-object previewImage" src="..." alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">File: aa.txt</h4>
<div>Status:</div>
<div>Date:</div>
</div>
</div>
<div class="media list-group-item">
<span class="badge run">run</span>
<div class="media-left" >
<a href="#">
<img class="media-object previewImage" src="..." alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">File: aa.txt</h4>
<div>Status:</div>
<div>Date:</div>
</div>
</div>
<div class="media list-group-item">
<span class="badge run">run</span>
<div class="media-left" >
<a href="#">
<img class="media-object previewImage" src="..." alt="...">
</a>
</div>
<div class="media-body">
<h4 class="media-heading">File: aa.txt</h4>
<div>Status:</div>
<div>Date:</div>
</div>
</div>
</div>
</div>
</body>
</html>