This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive/Views/Home/Index.cshtml

34 lines
1019 B
Plaintext

@using BirdsiteLive.Common.Settings;
@model InstanceSettings
@{ ViewData["Title"] = "Home Page"; }
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>
<br />
This instance is a Twitter to ActivityPub bridge.<br />
<a asp-controller="About" asp-action="Index">Learn more</a> or find a Twitter account below:
</p>
<form method="POST">
<div class="form-group">
<input type="text" class="form-control col-8 col-sm-8 col-md-6 col-lg-4 mx-auto" id="handle" name="handle" autocomplete="off" placeholder="Twitter Handle">
</div>
<button type="submit" class="btn btn-primary">Show</button>
</form>
<br /><br />
@if (Model.InfoBanner.Length > 0)
{
<div class="alert alert-danger">
@Html.Raw(Model.InfoBanner)
</div>
}
@*@if (HtmlHelperExtensions.IsDebug())
{
<a class="nav-link text-dark" asp-area="" asp-controller="Debuging" asp-action="Index">Debug</a>
}*@
</div>