Replace old domain with new sub-domain

This commit is contained in:
jkaplon 2021-10-11 15:19:40 -04:00
parent f6cb270324
commit e6d8df43c5
2 changed files with 6 additions and 6 deletions

View File

@ -247,7 +247,7 @@ app.post('/:loc/login',
function(req, res) {
winston.info('sucessful login');
//res.redirect('/:loc/admin'); // no worky, :loc is literal here, not repop by param.
//res.redirect(req); // no worky, get https://tenniscourtsopen.com/[object%20Object]
//res.redirect(req); // no worky, get https://courts.kaplon.us/[object%20Object]
var loc = req.params.loc;
res.redirect('/' + loc + '/admin'); // no worky, undefined here...how to include w/post?
});

View File

@ -4,19 +4,19 @@
<h1 class="text-center"><b>Are the courts open?</b></h1>
</div>
<hr></hr>
<h2 class="text-center">What's the <em>QUICKEST</em> way to know if the courts are open?:</br><strong>TennisCourtsOpen.com</strong></h2>
<h2 class="text-center">What's the <em>QUICKEST</em> way to know if the courts are open?:</br><strong>courts.kaplon.us</strong></h2>
<hr></hr>
<div class="row">
<div class="col-md-2">
<img src="pro-shop-device.jpg" alt="TennisCourtsOpen.com internet-enabled hardware device" class="img-thumbnail">
<img src="pro-shop-device.jpg" alt="courts.kaplon.us internet-enabled hardware device" class="img-thumbnail">
</div>
<div class="col-md-10">
<p class="lead">At each location, we supply an internet-enabled physical switch to update status pages here at TennisCourtsOpen.com.</p>
<p class="lead">Want to sign on as another TennisCourtsOpen.com location? <a href="mailto:info@tenniscourtsopen.com">Email us.</a></p>
<p class="lead">At each location, we supply an internet-enabled physical switch to update status pages here at courts.kaplon.us>
<p class="lead">Want to sign on as another courts.kaplon.us location? <a href="mailto:courts@kaplon.us">Email us.</a></p>
<table class="table lead">
{{! Make this table dynamic later when DB supports multiple locations. }}
<th>Here are the currently supported locations:{{! </th><th>Status</th> }}
<tr><td><a href="https://tenniscourtsopen.com/tt">Temple Terrace Recreation Center, clay courts</a></td></tr>
<tr><td><a href="https://courts.kaplon.us/tt">Temple Terrace Recreation Center, clay courts</a></td></tr>
</table>
</div>
</div>