forked from usegalaxy-ca/usegalaxy-ca.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
112 lines (77 loc) · 3.28 KB
/
Copy pathhelp.html
File metadata and controls
112 lines (77 loc) · 3.28 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
<!DOCTYPE html>
<html>
<head>
<title>UseGalaxy.ca - A Canadian UseGalaxy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/material-icons@1.13.7/iconfont/material-icons.min.css">-->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="https://public.usegalaxy.ca/usegalaxy-ca.main.css">
<link rel="stylesheet" href="usegalaxy-ca.main.css">
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>-->
<!-- <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JW6DK98RDF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JW6DK98RDF');
</script>
<script type="module" src="js/json-form-submit.js"></script>
</head>
<body>
<div class="MainViewPort">
<!-- TITLE SECTION -->
<div class="Header">
<img width="20%" src="https://public.usegalaxy.ca/images/Galaxy_Canada_Logo.png">
<div class="HeaderTitle">
Welcome to UseGalaxy.ca
</div>
<div class="HeaderSubTitle">
The main canadian public Galaxy server
</div>
</div>
<div>
<br><br><br>
</div>
<!-- IMPORTANT MESSAGE -->
<div class="ImportantMessage">
<h2>
<b>UseGalaxy.ca is under development</b>
</h2>
<br>
<div>The official launch is scheduled for early 2024. Stay tuned !</div>
</div>
<br>
<div>
<form action="" id="helpForm" >
<label for="email">email: </label>
<input type="email" name="email" required >
<br>
<label for="subject">Subject: </label>
<input type="text" name="subject" value="[UseGalaxy]:" required >
<br>
<label for="message">Message: </label>
<input type="text" name="message" required >
<br>
<label id="feedback"></label>
<br>
<button type="submit" id="btnSubmit">
Submit
</button>
</form>
</div>
<br>
<!-- FOOTER SECTION -->
<div class='Footer'>
<div>© Galaxy server version 23.1</div>
<div><a href="help.html">Help</a> </div>
<div><a href="https://galaxyproject.org/citing-galaxy/">Citing</a> </div>
<div><a href="about.html">About Us</a> </div>
</div>
</div>
</body>
</html>