-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoinus.html
99 lines (91 loc) · 4.9 KB
/
joinus.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.css">
<title>Join Us</title>
<script src="jquery.js"></script>
<script src="PHPMailer/utility.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="start.js"></script>
<script>
$(document).ready(function() {
var tmp = document.getElementById("overall_id");
var footer = document.getElementById("footer_id");
tmp.style.minHeight = ($(window).height()-$(footer).height()-38)+"px";
alert($(footer).paddingTop());
});
</script>
</head>
<body>
<div id="overall_id" class="overall">
<div class="navbar-wrapper">
<!-- Wrap the .navbar in .container to center it within the absolutely positioned parent. -->
<div class="container">
<div class="navbar navbar-inverse" style="font-size: 20px">
<div class="navbar-inner">
<!-- Responsive Navbar Part 1: Button for triggering responsive navbar (not covered in tutorial). Include responsive CSS to utilize. -->
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="index.html"><img id="logo" src="mulab/labmu.png"></a>
<!-- Responsive Navbar Part 2: Place all navbar contents you want collapsed withing .navbar-collapse.collapse. -->
<div class="nav-collapse collapse">
<ul class="nav" style="vertical-align: middle">
<!--<li class="active"><a href="#">Lab μ</a></li>-->
<!--li class="active"><a href="#"><i class="icon-home"></i>Home</a></li-->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-flag-checkered"></i> Our Projects</a>
<ul class="dropdown-menu">
<li><a href="http://tunet.lab.mu"><b>TUNet</b> App</a></li>
<li class="divider"></li>
<li class="nav-header">Under Progress</li>
<li><a href="http://open.lab.mu"><b>Caμs</b> Open Platform</a></li>
<li><a href="http://www.mathmu.cn"><b>maTHμ</b> CAS</a></li>
<li><a href="http://edx.lab.mu"><b>edX</b> Mobile App</a></li>
</ul>
</li>
<li><a href="members.html"><i class="icon-group"></i> Members</a></li>
<li><a href="joinus.html"><i class="icon-smile"></i> Join Us!</a></li>
<li><a href="aboutus.html"><i class="icon-rocket"></i> About Us</a></li>
<!-- Read about Bootstrap dropdowns at http://twitter.github.com/bootstrap/javascript.html#dropdowns -->
</ul>
</div><!--/.nav-collapse -->
</div><!-- /.navbar-inner -->
</div><!-- /.navbar -->
</div> <!-- /.container -->
</div>
<div class="form-container" style="padding-top: 100px">
<div class="container">
<div class="row">
<div class="span4">
<img src="mulab/labmu_small.png" style="padding-top: 50px">
</div>
<div class="span8">
<iframe src="https://docs.google.com/forms/d/1PGg8Xf4lkOrPs6yr-vH_eEGtEj7H_4qhSFPJOlPaFoM/viewform?embedded=true" width="100%" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
</div>
</div>
<div id="footer_id" class="footer-inform well">
<p>Designed and built with all the love in the world by <a href="mailto:mulab.thu@gmail.com">Lab μ</a>.</p>
<p>Welcome to join us and learn together with progress together.</p>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43044519-1', 'lab.mu');
ga('send', 'pageview');
</script>
</body>
</html>