forked from RGClary/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.php
49 lines (49 loc) · 2.16 KB
/
join.php
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
<!DOCTYPE html>
<html>
<head>
<?php
require('common/head-includes.php');
?>
<title>Join Us | Association for Computing Machinery UTSA</title>
</head>
<body>
<?php
require('common/menu.php');
?>
<div id="content" class="container">
<div class="row">
<div class="col-sm-12">
<div class="row section-container">
<div class="col-sm-12">
<!-- content here! -->
<h1>Joining ACM</h1>
<p>
As the premier computer science organization at UTSA, joining ACM is one of the best
choices you can make to build your network (and your resume) outside
of the classroom. Extra-curricular activities are essential to getting your dream job
and creating a fulfilling college experience, and we're here to help.
</p>
<p>
There are only two steps to become a member of our chapter:
</p>
<ul>
<li>Attend our general meetings</li>
<li><a href="dues">Pay our membership dues of $15.00 per semester</a></li>
</ul>
<p>
Once you pay your dues, you will become a full member of
ACM UTSA and enjoy all of the benefits. We strongly believe
that membership participation is vital to creating a fun
and engaging experience, so the only thing we ask of our
members is to actively participate in our meetings and events.
</p>
</div>
</div>
</div>
</div>
</div>
<?php
require('common/footer.php');
?>
</body>
</html>