-
Notifications
You must be signed in to change notification settings - Fork 1
/
Untitled-1.php
110 lines (97 loc) · 3.17 KB
/
Untitled-1.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Your Project Teams</title>
<link rel="stylesheet" href="styles/layout.css" type="text/css" />
<script type="text/javascript" src="scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="scripts/jquery.slidepanel.setup.js"></script>
<script type="text/javascript" src="scripts/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="scripts/jquery.tabs.setup.js"></script>
</head>
<body>
<?php
include 'include/connect.php';
include 'include/header.php';
?>
<div id='g' style="height:600px; width:900px;" align="center">
<h1> Student Registration</h1>
<form method="post" action="student_team.php" >
<table style="height:250px;">
<tr>
<td>
Name:
</td>
<td>
<input type="text" name="projectname" style="width:300px;"/>
</td>
</tr>
<tr>
<td>
Branch:
</td>
<td>
<select name="Branch" style="width:300px; height:30px;" required>
<option value="">Branch</option>
<option >CS</option>
<option> IT </option>
<option >Electrical</option>
<option >Mechanical</option>
<option > EIC </option>
<option > Electronics & Communication </option>
</select>
</td>
</tr>
<tr>
<td>
Team members:
</td>
<td align="left">
<input type='radio' name='Team_mem' value='3' />3
<input type='radio' name ='Team_mem' value='4'/>4
<input type='radio' name ='Team_mem' value='5'/>5
</td>
</tr>
<tr>
<td>
Technology Used:
</td>
<td align="left">
<input type='radio' name='Tech' value='.NET' />.NET
<input type='radio' name ='Tech' value='java'/>Java
<input type='radio' name ='Tech' value='PHP'/>PHP
<input type='radio' name ='Tech' value='MySQL'/>MySQL
<input type='radio' name ='Tech' value='Networking'/>Networking
<input type='radio' name ='Tech' value='Linux'/>Linux
<input type='radio' name ='Tech' value='matlab'/>matlab
<input type='radio' name ='Tech' value='mobile'/>Mobile Technology
</td>
</tr>
</select>
<tr>
<td>Password</td>
<td><input type="password" name="pass" style="width:300px;"/>
</td>
</tr>
<tr>
<td>Confirm password</td>
<td><input type="password" name="cpass" style="width:300px;"/>
</td>
</tr>
</table>
<tr>
<td>
<input type="submit" name="Submit" value="submit" style="background-color:#63C; width:80px; height:30px; color:#FFF"/>
<input type="reset" name="Reset" value="reset" style="background-color:#63C; width:80px; height:30px; color:#FFF"/>
</td>
</tr>
</form>
</div>
<div class="wrapper col6">
<div id="copyright">
<p class="fl_left" align="center">Copyright © 2013 - All Rights Reserved - <a href="#">SPAM</a></p>
<br class="clear" />
</div>
</div>
</body>
</html>