-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
executable file
·128 lines (93 loc) · 4.48 KB
/
signup.html
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
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="img/images.png">
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/redmond/jquery-ui.css">
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: 81t2pllbr8lep1
onLoad: OnLinkedInFrameworkLoad
authorize: false
</script>
</head>
<body>
<a href="https://www.cse.du.ac.bd">
<div class="tophead">
<img src="img/header2.3.1-1.png" align="center">
</div><br>
</a>
<!-- Scroll up button-->
<img src="img/up_arrow.png" id="upScroll" onclick="goUp()" title="Go Top">
<div class="body"></div>
<form action="index.html" method="post">
<h1 >Sign Up</h1>
<script type="in/Login">
</script>
<img src="img/dummy.png" onmouseover="ppChange()" onmouseleave="ppAfterMouse()" id="profilePicture">
<fieldset>
<input type="file" id="uploadpic">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="mail">Email:</label>
<input type="email" id="mail" name="email">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required="">
<label for="password_again">Confirm Password:</label>
<input type="password" id="password_again" name="password_again">
<label for="batch">Batch:</label>
<select id="batch" name="batch">
</select>
<label for="phone">Phone No:</label>
<input type="text" id="phone" name="phone">
<label for="departure-date">Date of Birth:</label>
<!--<input type="date" id="dob" name="dob"> -->
<input id="departure-date" type="text" placeholder="DD-MM-YYYY">
<label for="blood">Blood Group:</label>
<select id="blood" name="blood">
<option value="O+">O+</option>
<option value="O-">O-</option>
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+">B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
</select>
<label for="hometown">Hometown:</label>
<input type="text" id="hometown" name="hometown">
<label for="address">Residing Address:</label>
<input type="text" id="address" name="address">
<label for="state">Residing State:</label>
<input type="text" id="state" name="state">
<label for="country">Residing Country:</label>
<input type="text" id="country" name="country">
<label for="work">Current Working Place:</label>
<input type="text" id="work" name="work">
<label for="fb">Facebook Profile Link:</label>
<input type="url" id="fb" name="fb">
<label for="linkedin">Linkedin Profile Link:</label>
<input type="url" id="linkedin" name="linkedin">
</fieldset>
<button type="submit">Sign Up</button>
</form>
<!-- Load all javascript files -->
<script type="text/javascript" src="js/signup_main.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.js"></script>
<script type="text/javascript" src="js/linkedin.js"></script>
<script type="text/javascript">
$(function() {
$('#departure-date').datepicker({
numberOfMonths: 1,
showAnim: "fold",
showButtonPanel: true,
onSelect: (function(date) {
$(this).val($(this).datepicker('getDate').toLocaleDateString());
})
});
});
</script>
</body>
</html>