c3stream/Pages/Index.cshtml

18 lines
872 B
Plaintext
Raw Normal View History

2020-01-03 15:10:06 +01:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home";
2020-01-04 02:31:35 +01:00
c3stream.UpdateCookie(Request, Response, $"/?");
2020-01-03 15:10:06 +01:00
}
<div style="text-align: center">
<h1>Welcome to c3stream!</h1>
Your bookmark link:<br/>
2020-01-04 00:42:36 +01:00
<code onclick="copyToClipboard(this)">https://@Request.Host.Value?bookmark=@Request.Cookies["bookmark"]</code><br/><br/>
2020-01-03 15:10:06 +01:00
<div class="btn-group">
2020-01-04 00:42:36 +01:00
<a type="button" class="btn btn-primary" href="/Conference?c=36c3&bookmark=@Request.Cookies["bookmark"]">36c3</a>
<a type="button" class="btn btn-primary" href="/Conference?c=35c3&bookmark=@Request.Cookies["bookmark"]">35c3</a>
<a type="button" class="btn btn-primary" href="/Conference?c=34c3&bookmark=@Request.Cookies["bookmark"]">34c3</a>
<a type="button" class="btn btn-primary" href="/Conference?c=33c3&bookmark=@Request.Cookies["bookmark"]">33c3</a>
2020-01-03 15:10:06 +01:00
</div>
</div>