-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 1.67 KB
/
index.html
File metadata and controls
108 lines (101 loc) · 1.67 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
<html>
<head>
<style type="text/css">
body {
background:url(bgf.jpg);
}
#error {
color:red;
}
#username {
border:3px solid #b3ccff;
height:40px;
width:500px;
font-family:bell MT;
font-size:20px;
}
button {
border:3px solid #b3ccff;
height:35px;
width:350px;
font-family:bell MT;
font-size:20px;
color:#66a3ff;
}
#table{
text-align:center;
width:;
cellpadding:10px;
cellspacing:10px;
border:4px solid #66a3ff;
}
td{
font-family:bell MT;
}
</style>
<title>
USER CODEFORCES
</title>
</head>
<body>
<br/>
<br/>
<center><p><label><font size="6" face="bell MT" color="white";>CODEFORCES USERNAME</font></label></p>
<hr/>
<hr/>
<br>
<input type="text" name="UserName" id="username" placeholder="UserName" size="30"><br/>
<p>
<button type="submit" name="submit" value="submit" onclick="jsfile()">SUBMIT</button>
</p>
<p id="error"></p>
<br><br>
<table border="3" id="table" style="display:none" >
<tr>
<td><center><img id="handle"></img></center></td>
</tr>
<tr>
<td id="un"></td>
</tr>
<tr>
<td id="name"></td>
</tr>
<tr>
<td id="email"></td>
</tr>
<tr>
<td id="organisation"></td>
</tr>
<tr>
<td id="con"></td>
</tr>
<tr>
<td id="FOC"></td>
</tr>
<tr>
<td id="city"></td>
</tr>
<tr>
<td id="maxrating"></td>
</tr>
<tr>
<td id="maxrank"></td>
</tr>
<tr>
<td id="rank"></td>
</tr>
<tr>
<td id="rating"></td>
</tr>
<tr>
<td id="LO"></td>
</tr>
<tr>
<td id="regtime"></td>
</tr>
</table>
</center>
<script type="text/javascript" src="test.js">
</script>
</body>
</html>