Added links

This commit is contained in:
lizbian 2021-06-12 14:26:08 +02:00 committed by Liz
parent bf97c85175
commit 5146052f73
2 changed files with 13 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<div class="text-center">
@if (HttpContext.Session.GetString("authorized") != "true") {
<h1 class="display-4">Welcome</h1>
<p>Please log in to see your personal plan.</p>
<p>Please <a href="/Login">log in</a> to see your personal plan.</p>
}
else {
<h1 class="display-4">
@ -87,7 +87,7 @@
</div>
<div class="d-flex p-2" style="width: 40%">
<form style="width: 100%" method="GET" action="/OEAPI">
<h3>Add trip from oeffisear.ch</h3>
<h3>Add trip from <a href="https://oeffisear.ch" target="_blank">oeffisear.ch</a></h3>
<br/>
<div class="form-group">
<input type="text" class="form-control" name="link" placeholder="oeffisear.ch link / shortcode">

View File

@ -12,6 +12,17 @@ a {
color: #0366d6;
}
/* oeffisear.ch link */
h3 a, h3 a:hover {
color: #212529;
}
h3 a {
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-thickness: 1.5pt;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;