-
Notifications
You must be signed in to change notification settings - Fork 52
/
contactus.php
196 lines (168 loc) · 8.21 KB
/
contactus.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
include_once "includes/header.php";
?>
<!-- Main Info starts -->
<div id="main_info_cont">
<div id="main_info_left">
<div id="main_info_left_in">
<div class="content_style1">
<div class="content_style1_heading">
<h3>What is GNU?</h3>
</div>
<div class="content_style1_info">
<strong>In the words of Richard M. Stallman, the founder of the GNU Project:</strong><br /><br />
<p>"GNU, which stands for Gnu's Not Unix, is the name for the complete Unix-compatible software system which I am writing so that I can give it away free to everyone who can use it. Several other volunteers are helping me. Contributions of time, money, programs and equipment are greatly needed."</p><br />
<strong><a href="http://www.gnu.org/gnu/manifesto.html">»»Read GNU Manifesto</a></strong>
</div>
</div>
<br /><br />
<div class="content_style1_cont">
<div class="content_style1">
<div class="content_style1_heading">
<h3>Linux and the GNU Project</h3>
</div>
<div class="content_style1_info">
<strong>The version of GNU which is widely used today is more often known as "Linux" and many users are not aware of the extent of its connection with the GNU Project.</strong><br /><br />
<p>Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in a combination with the GNU operating system: the whole system is basically GNU, with Linux functioning as its kernel.</p><br />
<strong><a href="http://www.gnu.org/gnu/linux-and-gnu.html">»»Read more</a></strong>
</div>
</div>
</div>
</div>
</div>
<div id="main_info_center">
<div id="main_info_center_in">
<div class="content_style2">
<div class="content_style2_heading">
<h3>GLUG Mail</h3>
</div>
<br />
<div id="glug_mail_cont" style="width:450px;margin:0 auto;">
<?php
if (isset($_POST['submit_mail']))
{
//send email
// $email_from = NULL;
// $email_to = NULL;
// $subject = NULL;
// $message = NULL;
$email_from = $_POST['email_from'] ;
$email_to = "[email protected]" ;
$subject = $_POST['subject'] ;
$message = $_POST['message'] ;
$message = wordwrap($message, 70);
mail($email_to, $subject,$message . "\nFrom : " . $email_from, "From:" . "[email protected]");
echo "Thank you for your feedback...";
}
else
{
echo "<table>
<form method='post' action='contactus.php'>
<tr>
<td>Your email-id : </td>
<td><input name='email_from' type='text' required='required' /> </td>
</tr>
<tr>
<td>Subject: </td>
<td><input name='subject' type='text' required='required' /> </td>
</tr>
<tr>
<td>Message: </td>
<td><textarea name='message' rows='6' cols='40' required='required' ></textarea> </td>
</tr>
<tr>
<td><br></td>
</tr>
<tr>
<td></td>
<td><input type='submit' name='submit_mail' style='background-color:#044077; padding:5px 15px; color:#FFFFFF;'/>
<input type='reset' style='background-color:#044077; padding:5px 15px; color:#FFFFFF;'/>
</td>
</tr>
</form>
</table>
";
}
?>
</div>
<br />
<br />
</div>
<br />
<div class="content_style2">
<div class="content_style2_heading">
<h3>GLUG-NITH IRC Channel</h3>
</div>
<div class="content_style2_info">
<p><strong>IRC webchat on GLUG NITH</strong>
<br />
Now webchat gateway interface is available through glug.nith.ac.in. This means you can use IRC webchat 24 hrs. Just select a nick and start discussing. The glug nith irc channel is #glugnith. Other popular channels are #fedora, #ubuntu, #c++ etc.
<br />
Visit IRC webchat interface <a href="/irc.php" target="_blank">here</a>.
<br/><br/>
<!-- How to use IRC webchat interface -->
<h3>IRC How to?</h3>
<p>
<b>IRC (Internet Relay Chat)</b> is an Internet protocol for group communication.
<br />
<a href="http://en.wikipedia.org/wiki/Internet_Relay_Chat" target="_blank">»»Read about IRC on Wikipedia</a>
<br />
Each group(chat room) in IRC is identified by a channel name. You can join an IRC channel by entering your nick (like an username) and channel na me(like #glugnith). Channel names always start with a # or ##. e.g. #glugnith, #fedora, #ubuntu, #c++ etc.
<br />
<b>#glugnith</b> is the official IRC channel of GLUG NITH. You can join this channel and be the part of the discussion. You can also a sk any GNU/Linux related problems here. We almost always hang out here, so this is the fastest way to reach us.
<br />
Since IRC is blocked by our college proxy, so you cannot use an IM client like Pidgin to connect to an IRC server from NITH. But you c an use freenode's webchat interface to connect to IRC.
<br />
<a href="http://glug.nith.ac.in/irc.php" target="_blank">»»Click here</a> to use the IRC webchat interface.
</p>
</p>
</div>
</div>
<br />
<div class="content_style2">
<div class="content_style2_heading">
<h3>Facebook Group of GLUG NITH</h3>
</div>
<div class="content_style2_info">
<p>
<strong>Join Us on Facebook</strong>
<p>You can join GLUG NITH group at <a href="https://www.facebook.com/groups/glugnith/">facebook</a> or subscribe to our page at <a href="https://www.facebook.com/glugnith/">facebook</a> for latest updates.</p>
</p>
</div>
</div>
<br />
<div class="content_style2">
<div class="content_style2_heading">
<h3>Mailing List</h3>
</div>
<div class="content_style2_info">
<p>
This mailing list is hosted at <a href="http://lists.nongnu.org">lists.nongnu.org</a> and was graciously allotted to us by <a href="http://savannah.gnu.org">savannah.gnu.org</a>.</p>
<br />
<h3><a href="http://savannah.gnu.org">Thank you Savannah!</a></h3><br />
<div class="line1"></div>
<strong>How to Subscribe?</strong>
<p>Its easy! Go <a href="http://lists.nongnu.org/mailman/listinfo/glug-nith-discuss"><b>here</b></a>.</p>
<div class="line1"></div>
<strong>How to read old posts?</strong>
<p>You can read the old posts <a href="http://lists.gnu.org/archive/html/glug-nith-discuss/"><b>here</b></a>.</p>
<div class="line1"></div>
</p>
</div>
</div>
</div>
</div>
<div id="main_info_right">
<div id="main_info_right_in">
<?php
include_once "includes/main_info_right.php";
?>
</div>
</div>
<div class="float_clear">
</div>
</div>
<!-- Main Info ends -->
<?php
include_once "includes/footer.php";
?>