20 lines
784 B
Plaintext
20 lines
784 B
Plaintext
@{
|
|
ViewBag.Title = @GlobalConfig.ProjectTitle;
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
}
|
|
|
|
<script>
|
|
if (window.top !== window) {
|
|
window.top.location.href = "/home/index";
|
|
}
|
|
</script>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-4"></div>
|
|
<div class="col-md-4" align="center" style="margin-top: 100px; font-size: 30px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif; color: #8B2323;">
|
|
<div>欢迎使用 <span style="font-weight: 800; letter-spacing: -0.04em; color: #C0221E;">OneDeriv</span></div>
|
|
<div>@GlobalConfig.ProjectTitle</div>
|
|
</div>
|
|
<div class="col-md-4"></div>
|
|
</div>
|
|
</div> |