This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h3> | |
Redirecting to google.com.com after <span id="countdown">20</span> seconds | |
</h3> | |
<script type="text/javascript"> | |
var seconds = 20; | |
function countdown() { | |
seconds = seconds - 1; | |
if (seconds < 0) { | |
window.location = "https://google.com"; | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="submit_form"> | |
<div class="alert alert-success" style="display: none;" role="alert"> | |
<strong>Your work has been submitted!</strong> You successfully submitted your work. It is now in-review. | |
</div> | |
<div class="well"> | |
{{# with job }} | |
<h3 class="text-info job-name" data-job-id="{{ _id }}">{{ name }}</h3> |