Skip to content

Commit 81db1cb

Browse files
committed
Merge branch 'release3_1' into production
2 parents 54407de + aa8bd6e commit 81db1cb

File tree

4,925 files changed

+1666
-1150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,925 files changed

+1666
-1150
lines changed
67.3 KB
Loading
2.16 KB
Loading
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#content .required::after {
2+
content: " *";
3+
color: #C00;
4+
}
Lines changed: 173 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,173 @@
1+
<!DOCTYPE html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6+
<head>
7+
<meta charset="utf-8">
8+
<!--[if IE]>
9+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
10+
<![endif]-->
11+
<meta name="description" content="">
12+
<meta name="viewport" content="width=device-width">
13+
14+
<meta http-equiv="cache-control" content="max-age=0" />
15+
<meta http-equiv="cache-control" content="no-cache" />
16+
<meta http-equiv="expires" content="0" />
17+
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
18+
<meta http-equiv="pragma" content="no-cache" />
19+
20+
<link href="https://fonts.googleapis.com/css?family=Oswald&amp;subset=latin,latin-ext" rel="stylesheet" type="text/css">
21+
22+
<link href="/apps-include/bootstrap/css/bootstrap.min.css" rel="stylesheet">
23+
<link href="/apps-include/icomoon/icomoon.css" rel="stylesheet">
24+
<!--<link href="/apps-include/css/multilevel-dropdown.css" rel="stylesheet">-->
25+
<link href="/apps-include/css/metacentrum.css" rel="stylesheet">
26+
<link href="/apps-include/css/layout.css" rel="stylesheet">
27+
<link href="../non/css/main.css" rel="stylesheet">
28+
29+
<script src="/apps-include/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
30+
31+
<link rel="shortcut icon" href="/apps-include/img/favicons/favicon.ico">
32+
<link rel="icon" sizes="16x16 32x32 64x64" href="/apps-include/img/favicons/favicon.ico">
33+
<link rel="icon" type="image/png" sizes="64x64" href="/apps-include/img/favicons/favicon-64.png">
34+
<link rel="icon" type="image/png" sizes="32x32" href="/apps-include/img/favicons/favicon-32.png">
35+
<link rel="apple-touch-icon" href="/apps-include/img/favicons/favicon-57.png">
36+
<link rel="apple-touch-icon" sizes="144x144" href="/apps-include/img/favicons/favicon-144.png">
37+
<meta name="msapplication-TileImage" content="/apps-include/img/favicons/favicon-white-144.png">
38+
<meta name="msapplication-TileColor" content="#00569c">
39+
40+
<title>Project/Virtual organization registration form</title>
41+
</head>
42+
<body>
43+
44+
<div id="wrap">
45+
46+
<div id="header">
47+
<div class="container">
48+
<div class="row">
49+
<div class="col-sm-2">
50+
<div class="logo">
51+
<a href="https://perun.cesnet.cz"><img src="/apps-include/img/eduteams_logo.png" alt="perun logo"></a>
52+
</div>
53+
</div>
54+
<div class="col-sm-8">
55+
<div class="title">
56+
<h3>Project/Virtual organization registration form</h3>
57+
</div>
58+
</div>
59+
<div class="col-sm-2">
60+
<div class="user">
61+
<span class="user-firstName">logged as ...</span> <span class="user-lastName"></span>
62+
</div>
63+
</div>
64+
</div>
65+
</div>
66+
</div>
67+
68+
<div class="container">
69+
<!--[if lt IE 7]>
70+
<div class="row"><p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p></div>
71+
<![endif]-->
72+
73+
<div class="row">
74+
<div class="col-md-12">
75+
<div id="staticMessager">
76+
<!-- contend loaded by JavaScript -->
77+
</div>
78+
</div>
79+
</div>
80+
81+
<div class="row">
82+
83+
84+
85+
<div id="content" class="col-md-12">
86+
<div class="tab-content content"> <!-- content -->
87+
88+
<div class="tab-pane active" id="profile"> <!-- profile tab -->
89+
90+
<form class="form-horizontal" role="form" id="establishForm">
91+
<div class="form-group">
92+
<label for="fullName" class="col-md-2 control-label required">Name</label>
93+
<div class="col-md-8">
94+
<input type="text" class="form-control" id="fullName" placeholder="Name" autofocus required>
95+
<p class="help-block">Full name of the project/Virtual organization.</p>
96+
</div>
97+
</div>
98+
<div class="form-group">
99+
<label for="shortName" class="col-md-2 control-label required">Abbreviation</label>
100+
<div class="col-md-8">
101+
<input type="text" class="form-control" id="shortName" placeholder="Abbreviation" required>
102+
<p class="help-block">Provide abbreviation or nickname of the project/Virtual organization.</p>
103+
</div>
104+
</div>
105+
106+
<div class="form-group">
107+
<div class="col-md-offset-2 col-md-10">
108+
<button type="submit" class="btn btn-success" id="submitButton">Create the VO</button>
109+
</div>
110+
</div>
111+
</form>
112+
<div class="alert alert-danger" role="alert" style="display: none;" id="alert">
113+
To create a new virtual organization, please <a href='https://perun-eduteams.cesnet.cz/fed/registrar/?vo=eduTEAMS&targetnew=https%3A%2F%2Fperun-eduteams.cesnet.cz%2Fa%2Festablish-vo-form%2Ffed%2F&targetexisting=https%3A%2F%2Fperun-eduteams.cesnet.cz%2Fa%2Festablish-vo-form%2Ffed%2F&targetextended=https%3A%2F%2Fperun-eduteams.cesnet.cz%2Fa%2Festablish-vo-form%2Ffed%2F'>register yourself first</a>.
114+
<p class=\"help-block\">(You will be redirected back to this form after the registration.)</p>
115+
</div>
116+
117+
</div>
118+
119+
</div> <!-- content -->
120+
121+
</div> <!-- /#content -->
122+
123+
</div> <!-- /.row -->
124+
</div> <!-- /.container -->
125+
<div id="push"></div>
126+
</div> <!-- /#wrap -->
127+
128+
129+
<div id="footer">
130+
<footer>
131+
<div class="container">
132+
<div class="row">
133+
<div class="col col-md-3">
134+
<p>Powered by <img width="135" height="50" src="/apps-include/img/perun_0.png" style="display: inline" alt="perun"></p>
135+
</div>
136+
</div>
137+
</div>
138+
</footer>
139+
</div>
140+
141+
142+
<div id="flowMessager">
143+
<!-- contend loaded by JavaScript -->
144+
</div>
145+
146+
147+
<noscript>
148+
<div class="modal">
149+
<div class="modal-body">
150+
<h3>Javascript is disabled</h3>
151+
<p>This site will not work correctly because your browser is blocking JavaScript. Please enable JavaScript and reload page.</p>
152+
</div>
153+
</div>
154+
</noscript>
155+
156+
157+
<script src="//code.jquery.com/jquery-latest.min.js"></script>
158+
<script>window.jQuery || document.write('<script src="/apps-include/js/vendor/jquery-1.11.1.min.js"><\/script>')</script>
159+
<script src="/apps-include/bootstrap/js/bootstrap.min.js"></script>
160+
161+
<script src="../non/js/Configuration.js"></script>
162+
<script src="/apps-include/js/PerunUtils.js"></script>
163+
<script src="/apps-include/js/PerunConnectionTester.js"></script>
164+
<script src="/apps-include/js/PerunTable.js"></script>
165+
<script src="/apps-include/js/PerunUserLoader.js"></script>
166+
<script src="/apps-include/js/Modal.js"></script>
167+
<script src="/apps-include/js/Messager.js"></script>
168+
<script src="/apps-include/js/LoadImage.js"></script>
169+
170+
<script src="../non/js/EstablishForm.js"></script>
171+
172+
</body>
173+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
configuration = {
2+
LOADER_IMAGE: "/apps-include/img/loader_white-bg.gif"
3+
};

0 commit comments

Comments
 (0)