forked from axg2016/Job-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
right.php
89 lines (79 loc) · 3.17 KB
/
right.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
<!-- Right column -->
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css">
<div id="col" class="noprint">
<div id="col-in">
<!-- About Me -->
<h3>Contact Us</h3>
<div id="about-me">
<p><strong>Job Portal</strong></p>
<p>1212121212</p>
<p>info@xyz.com<br />
</p>
</div> <!-- /about-me -->
<hr class="noscreen" />
<!-- Category -->
<h3 >Login</h3>
<div class="login">
<form name="form1" method="post" action="login.php">
<table width="100%" border="0">
<tr>
<td><strong>User Name</strong></td>
</tr>
<tr>
<td><span id="sprytextfield1">
<label>
<input type="text" name="txtUser" id="txtUser">
</label>
<span class="textfieldRequiredMsg">*</span></span>
<label></label></td>
</tr>
<tr>
<td><strong>Password</strong></td>
</tr>
<tr>
<td><span id="sprytextfield2">
<label>
<input type="password" name="txtPass" id="txtPass">
</label>
<span class="textfieldRequiredMsg">*</span></span></td>
</tr>
<tr>
<td><strong>User Type</strong></td>
</tr>
<tr>
<td><label>
<select name="cmbUser" id="cmbUser">
<option value="JobSeeker">JobSeeker</option>
<option value="Employer" selected="selected">Employer</option>
<option value="Administrator">Administrator</option>
</select>
</label></td>
</tr>
<tr>
<td><label>
<div align="center">
<input type="submit" name="button" id="button" value="Login">
</div>
</label></td>
</tr>
<tr>
<td><div align="center"><a href="Forget.php"><strong>Forgot Password? </strong></a></div></td>
</tr>
</table>
</form>
</div>
<br/>
<hr class="noscreen" />
<!-- Archive -->
<hr class="noscreen" />
<!-- Links -->
<hr class="noscreen" />
</div> <!-- /col-in -->
</div> <!-- /col -->
<script type="text/javascript">
<!--
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
//-->
</script>