-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.html
More file actions
118 lines (116 loc) · 3.85 KB
/
registration.html
File metadata and controls
118 lines (116 loc) · 3.85 KB
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
<html>
<head>
<title>Welcome To USBM</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="css/registration.css">
<link rel="stylesheet" type="text/css" href="css/nav_logo.css">
<script type="text/javascript" src="js/reg_check.js"></script>
<script type="text/javascript" src="js/cookies.js"></script>
<script type="text/javascript" src="js/excel_login.js"></script>
<script type="text/javascript" src="js/screen.js"></script>
<script>
if(getCookie("username")!="")
{
alert("Please Logout First!!");
window.location.assign(getCookie("prev_page"));
}
else
{
get_excelsheet();
}
var value_cor;
window.onload=function(){
display_cor();
}
function display_cor()
{
if(document.getElementById("corporate").checked==true)
{
document.getElementById("corporate_field").style.visibility="visible";
document.getElementById("corporate_field").style.display="block";
value_cor=1;
}
else
{
document.getElementById("corporate_field").style.visibility="hidden";
document.getElementById("corporate_field").style.display="none";
value_cor=0;
}
}
</script>
</head>
<body onunload="sheet_quit();">
<div id="wrap">
<div id="top">
<a href="main.html" target="_top"><img src="img5.jpg" height="100px" width="500px" style="border:0;"></a>
</div>
<div id="container">
<div id="wel_head">
<center>Welcome To <font color="#3399ff">Online Account Registration</font></center>
</div>
<table id="div_table">
<tr>
<td>
<div id="personal_info">
<form name="register" onsubmit="return check_form();" method="post">
<table id="form_table" cellpadding="10px">
<tr>
<th colspan="2" class="heading">Registration Form</th>
</tr>
<tr>
<th>Name<span class="mark">*</span> : </th>
<th>
<select name="title_name" width="15px">
<option selected value="Mr. ">Mr.</option>
<option value="Mrs. ">Mrs.</option>
<option value="Ms. ">Ms.</option>
</select>
<input type="text" onfocus="this.select();" value="First Name" name="fname" maxlength=20> <input type="text" onfocus="this.select();" value="Middle Name" name="mname" maxlength=20><input type="text" onfocus="this.select();" value="Last Name" name="lname" maxlength=20>
</th>
</tr>
<tr>
<th colspan="2">
<input type="checkbox" id="corporate" onChange="display_cor();"> For Corporate Account
<table id="corporate_field" style="visibility:hidden;display:none;margin-left:20px;margin-top:5px;">
<tr>
<td>Account Name<span class="mark">*</span> : </td>
<td><input type="text" name="corporate_name"></td>
</tr>
</table>
</th>
</tr>
<tr>
<th>Account No.<span class="mark">*</span>:</th>
<th><input type="text" maxlength=6 name="acc_no"></th>
</tr>
<tr>
<th>User-Id<span class="mark">*</span> : </th>
<th><input type="text" maxlength=15 name="user_id"></th>
</tr>
<tr>
<th>Password<span class="mark">*</span> : </th>
<th><input type="password" name="password" maxlength=15></th>
</tr>
<tr>
<th><input type="submit" value="Submit"></th>
<th><input type="reset" value="Reset"></th>
</tr>
</table>
</form>
</div>
</td>
<td>
<div id="note">
<b>Note :</b><br>
All <span class="mark">*</span> are compulsory Fields.Please make sure that each and every fields are fill-up.Any <span class="mark">FAKE </span>Id's would not been tolerated and <span class="mark">STRICT</span> actions would be
</div>
</td>
</tr>
</table>
</div>
<div id="footer">
<hr>
CopyRight © 2014 USBM.
</div>
</body>
</html>