20 lines
612 B
HTML
20 lines
612 B
HTML
<html>
|
|
<head>
|
|
<title>Error - Invalid URL</title>
|
|
<link rel="stylesheet" media="screen" href ="/static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static/css/bootstrap-theme.min.css">
|
|
<meta name="viewport" content = "width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h1>Error</h1>
|
|
<p>Invalid voting URL. Please check the link and try again.</p>
|
|
<a class="btn btn-primary" href="/" role="button">Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|