Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webpg #129

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Webpg #129

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions views/contest.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/css/sheet.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.0/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="/css/grid.css">
<link rel="stylesheet" type="text/css" href="/css/problem_display.css">
<title>First Contest | CodeManiacs</title>
</head>

<body>
<header>
<% include partials/header %>
</header>
<h1 class="title center"> Problems for first contest</h1>
<hr>
<div class="grid-content content">
<div class="box">
<aside>
<h4>Contest Ends in</h4>
<br>
</aside>
</div>

<div class="box">
<aside>
<h4>Contest Ranks</h4>
<br>
</aside>
</div>


<div class="box">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Code</th>
<th>Successful Submissions</th>
</tr>
</thead>
<tr>
<td>Ping Paja Pong</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Bulgi Array</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Solve the Puzzle</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Fuzzy Conversations</td>
<td></td>
<td></td>
</tr>
</table>
</div>
</div>
<footer>
<% include partials/footer %>
</footer>
</body>
<script src="/js/contest_countdown.js"></script>

</html>