-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebatesite.html
More file actions
175 lines (154 loc) · 4.09 KB
/
Copy pathdebatesite.html
File metadata and controls
175 lines (154 loc) · 4.09 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<head>
<title>DebateStat</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="icon" href="{{url_for('static', filename='surfingdebatedude.ico')}}" sizes="any" type="image/svg+xml">
</head>
<body style="background-color: #99caff; background-size: 100%;" >
<div>
<label class="title">DebateStat</label>
<div class="navbar-section">
<h1 class="nav-item"><a href="/"><type="button" class="block" style="color: #000000">Team </button></a></h1>
<h1 class="nav-item"><a href="/ind"><type="button" class="block" style="color: #000000">Individual </button></a></h1>
<h1 class="nav-item"><a href="/aboutus"><type="button" class = "block" style="color: #000000">About Us </button></a></h1>
<h1 class="nav-item"><a href="mailto:support@debatestat.com" style="color: #000000">Contact Us </a></h1>
</div>
</div>
<style>
/* Add a light black background color to the top navigation */
/*.topnav {*/
/* list-style-type: none;*/
/* overflow: hidden;*/
/* background-color: #4da6ff;*/
/* text-align: center;*/
/*}*/
/* Style the links inside the navigation bar */
/*.topnav a {*/
/* float: right;*/
/* position: relative;*/
/* left: -32.75%;*/
/* display: block;*/
/* background-color: #4da6ff;*/
/* color: #FFFFFF;*/
/* opacity: 50%;*/
/* text-align: center;*/
/* text-decoration: none;*/
/* padding: 8px 10px;*/
/* font-size: 25px;*/
/* transition-duration: 0.25s;*/
/*}*/
/* Change the style of links on hover */
/*.topnav a:hover {*/
/* color: #FFFFFF;*/
/* opacity: 100%;*/
/* text-decoration: underline;*/
/*}*/
/* Add a color to the active/current link */
/*.topnav a:active {*/
/* color: #FFFFFF;*/
/* opacity: 100%;*/
/* text-decoration: underline;*/
/*}*/
/* header */
/*h {*/
/* left: 20.3px;*/
/* top: 24px;*/
/* position: absolute;*/
/* overflow: visible;*/
/* width: 591px;*/
/* height: 139px;*/
/* text-align: center;*/
/* font-family: Avenir;*/
/* font-style: normal;*/
/* font-weight: normal;*/
/* font-size: 67px;*/
/* color: rgba(255,255,255,1);*/
/* text-transform: capitalize;*/
/* width: 100%;*/
/* min-height: 30px;*/
/* display: inline-block;*/
/* text-align: center;*/
/*}*/
h1 {
text-align: center;
font-family: Avenir;
font-style: normal;
font-weight: normal;
color: #000000;
}
.navbar-section{
margin-top:25px;
display: flex;
flex-wrap: wrap;
/*margin-left: 25%;*/
justify-content:center;
}
.title{
font-size: 60px;
color: #FFFFFF;
display: flex;
justify-content: center;
font-family: Avenir;
}
.nav-item{
margin-left: 10px;
}
.nav-item a{
color: #000000;
text-decoration: none;
}
.nav-item:hover{
text-decoration: underline;
}
@media only screen and (max-width : 420px) {
.navbar-section{
margin-top: 25px;
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: column;
}
}
/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}
</style>
<br>
<br>
<form style="text-align: center;" method = "POST">
<h1><span style="text-decoration: underline;"><b>Team</b></span></h1>
<h1>First Debater's Full Name</h1>
<input size="22" style="height:26px;font-size:16pt;font-family: Avenir" name = "u">
<br>
<br>
<h1>Second Debater's Full Name</h1>
<input size="22" style="height:26px;font-size:16pt;font-family: Avenir" name = "t">
<br>
<br>
<br>
<input size="25" style="height:29px;font-size:14pt;background-color:#3333ff;color: #FFFFFF;font-family: Avenir;font-weight: bold" type = "submit">
</form>
<br>
<!-- For loop logic of jinja template -->
{%for x in dupe_dict%}
<table style="margin-left: 20px;">
<!-- Table headers -->
<th>
<tr style="color: black; ">
<td>URLs</td>
</tr>
</th>
<!-- table rows -->
<tr>
<td>{{dupe_dict[x]}}</td>
{%endfor%}
</tr>
</table>
<a href ={{theurl}}>{{theurl}}</a>
<p>{{lifetimetotal}}</p>
<p>{{lifetimepe}}</p>
<p>{{lifetimeelim}}</p>
<p>{{lifetimeelimpe}}</p>
</body>