-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathreg.html
More file actions
68 lines (63 loc) · 1.62 KB
/
reg.html
File metadata and controls
68 lines (63 loc) · 1.62 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
<!DOCTYPE >
<html>
Register page 2
<form action="/user_details" method="post">
<input
type="number"
name="phone_number"
placeholder="phone_number"
value=""
/>
<input
type="text"
name="first_name"
placeholder="first_name"
id="first_name"
value=""
/>
<input
type="text"
name="last_name"
placeholder="last_name"
id="last_name"
value=""
/>
<input type="text" name="institute" placeholder="institute" />
<input type="text" name="degree" placeholder="degree" />
<input type="text" name="branch" placeholder="branch" />
<input type="number" name="graduate_year" placeholder="graduate_year" />
<input
placeholder="Date"
class="textbox-n"
type="text"
onfocus="(this.type='date')"
onblur="(this.type='text')"
id="date"
/>
<input type="hidden" name="hash" id="hash" readonly />
<input type="submit" value="Submit" />
</form>
</html>
<script>
var first_name = getCookie("first_name");
document.getElementById("first_name").value = first_name;
var last_name = getCookie("last_name");
document.getElementById("last_name").value = last_name;
var hash = getCookie("hash");
document.getElementById("hash").value = hash;
function poptasticopener(url) {
var newWindow = window.open(
url,
"Takshashila Google Authentication",
"height=600,width=450"
);
if (window.focus) {
newWindow.focus();
}
}
</script>
<script>
// window.location.replace(
// "https://jesvijonathan.github.io/Takshashila-2023-Web-Design/"
// );
</script>