-
Notifications
You must be signed in to change notification settings - Fork 5
/
.Atomizer_Beta_Windows.html
63 lines (53 loc) · 1.42 KB
/
.Atomizer_Beta_Windows.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
<!DOCTYPE html>
<html>
<head>
<title>Linux Beta Site for the Atomizer</title>
<META NAME="ROBOTS" CONTENT="NOINDEX,NOFOLLOW">
<style>
body {
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}
</style>
</head>
<body bgcolor="LightSkyBlue">
<font size="4">
<center><h1>Win32 and Win64 Beta Site for the Atomizer</h1></center>
<br>
<font color="red">WARNING:</font> This is not the download
site for BioNetGen. If you wish to download the latest
version of BioNetGen, please visit:
<center><h1><a href="http://bionetgen.org">bionetgen.org</a></h1></center>
<br>
<br>
<center>
Please enter the commonly used name of the
CSB Conference Room (one word, lower case).
<br>
<br><br>
(To download for Win32)
<br>
<input type="password" id="field2" style="font-size:+1"><br>
<button onclick="myFunction2()">Access Atomizer FTP Site</button>
<br><br>
(To download for Win64)
<br>
<input type="password" id="field3" style="font-size:+1"><br>
<button onclick="myFunction3()">Access Atomizer FTP Site</button>
</center>
<script>
function myFunction2() {
var href = "ftp://15262:" + document.getElementById("field2").value +
"@ftp.drivehq.com/d_data/d_appveyor/build";
window.location = href;
}
function myFunction3() {
var href = "ftp://15263:" + document.getElementById("field3").value +
"@ftp.drivehq.com/d_data/d_appveyor/build";
window.location = href;
}
</script>
</body>
</html>