-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreg.php
108 lines (93 loc) · 2.89 KB
/
reg.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
<!DOCTYPE html>
<html>
<title>Alumini REGISTERATION FORM</title>
<marquee>
<p>
<h1 style=""><strong>Welcome To Alumini REGISTERATION FORM</strong></h1>
</p>
</marquee>
<style>
body {
background: url(background.png) no-repeat center center fixed;
-webkit-background-size: cover;
/* For WebKit*/
-moz-background-size: cover;
/* Mozilla*/
-o-background-size: cover;
/* Opera*/
font: 400 0.875rem/1.5 "Open Sans", sans-serif;
min-height: 100%;
background-size: cover;
font: 400 0.875rem/1.5 "Open Sans", sans-serif;
margin: 0;
min-height: 100%;
font-weight: bold;
}
</style>
<form action="in.php" method="post" enctype="multipart/form-data">
<table align="right">
<tr>
<td><input type="file" name="image"></td>
</tr>
</table>
</br>
</br>
</br>
<table border="0" cellspacing="0px" cellpadding="10px">
<tr>
<td>Name of the Alumini:</td>
<td><input type="text" name="nameal" placeholder="Name of the Alumini"></td>
</tr>
<tr>
<td>Date Of Birth:</td>
<td><input type="text" name="dob" placeholder="Year-MM-Day"></td>
</tr>
<tr>
<td>Branch:</td>
<td><input type="text" name="branch" placeholder="Branch"></td>
</tr>
<tr>
<td>Batch:</td>
<td><input type="text" name="batch" placeholder="Batch"></td>
</tr>
<tr>
<td>Year:</td>
<td><input type="text" name="year" placeholder="Duration of your B'tech"></td>
</tr>
<tr>
<td>Current postion:</td>
<td><input type="text" name="cpo" placeholder="Current postion"></td>
</tr>
<tr>
<td>Company/Origanisation</br>Working with:</td>
<td><input type="text" name="coww" placeholder="Company/Origanisation"></td>
</tr>
<tr>
<td>E-mail ID:</td>
<td><input type="text" name="email" placeholder="E-mail"></td>
</tr>
<tr>
<td>Mobile No:</td>
<td><input type="text" name="mobile" placeholder="Mobile No"></td>
</tr>
<tr>
<td>Area of Specialization:</td>
<td><input type="text" name="aos" placeholder="Area of Specialization"></td>
</tr>
<tr>
<td>Username:</td>
<td><input type="text" name="username" placeholder="Username"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="text" name="password" placeholder="Password"></td>
</tr>
</table>
<tr>
<td>
<center><input type="submit" name="sumit" value="submit">           <input type="reset" value="clear"></center>
</td>
</tr>
</form>
</body>
</html>