hfkfhkfhgjkuhgfkjfghkj
This commit is contained in:
10
app/views/nav/admin.html
Executable file
10
app/views/nav/admin.html
Executable file
@ -0,0 +1,10 @@
|
||||
<ul class="nav nav-pills flex-column mb-auto">
|
||||
{LOOP}
|
||||
<li class="nav-item">
|
||||
<a href="{url}" class="text-white {linkClasses}" {linkAttributes}>
|
||||
{text}
|
||||
</a>
|
||||
{subnav}
|
||||
</li>
|
||||
{/LOOP}
|
||||
</ul>
|
6
app/views/nav/adminSub.html
Executable file
6
app/views/nav/adminSub.html
Executable file
@ -0,0 +1,6 @@
|
||||
|
||||
<ul class="collapse list-unstyled ms-3 text-small shadow" id="{dropdownName}Dropdown">
|
||||
{LOOP}
|
||||
<li class="nav-item"><a href="{url}" class="submenu nav-link text-white">{text}</a></li>
|
||||
{/LOOP}
|
||||
</ul>
|
13
app/views/nav/adminTop.html
Normal file
13
app/views/nav/adminTop.html
Normal file
@ -0,0 +1,13 @@
|
||||
<nav class="navbar navbar-expand col-12 col-lg-auto justify-content-center mx-auto">
|
||||
<div class="container-fluid">
|
||||
<ul class="navbar-nav">
|
||||
{LOOP}
|
||||
<li class="nav-item">
|
||||
<a href="{url}" class="nav-link px-2 text-white">
|
||||
{text}
|
||||
</a>
|
||||
</li>
|
||||
{/LOOP}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
13
app/views/nav/main.html
Executable file
13
app/views/nav/main.html
Executable file
@ -0,0 +1,13 @@
|
||||
<nav class="navbar navbar-md-expand justify-content-center">
|
||||
<div class="container-fluid">
|
||||
<ul class="navbar-nav mx-auto">
|
||||
{LOOP}
|
||||
<li class="nav-item">
|
||||
<a href="{url}" class="nav-link text-white">
|
||||
{text}
|
||||
</a>
|
||||
</li>
|
||||
{/LOOP}
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
5
app/views/nav/pagination.html
Executable file
5
app/views/nav/pagination.html
Executable file
@ -0,0 +1,5 @@
|
||||
<ul class="pagination">
|
||||
{LOOP}
|
||||
<li{ACTIVEPAGE}><a href="?page={PAGENUMBER}">{LABEL}</a></li>
|
||||
{/LOOP}
|
||||
</ul>
|
16
app/views/nav/statusLoggedIn.html
Executable file
16
app/views/nav/statusLoggedIn.html
Executable file
@ -0,0 +1,16 @@
|
||||
<!-- User Dropdown -->
|
||||
<div class="dropdown nav-item mx-2 my-2 my-lg-0">
|
||||
<a href="#" class="d-flex align-items-center text-white text-decoration-none dropdown-toggle" id="userDropdown" data-bs-toggle="dropdown">
|
||||
<img src="{ROOT_URL}{AVATAR}" alt="User profile image" width="32" height="32" class="rounded-circle me-2">
|
||||
<strong>{USERNAME}</strong>
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-dark dropdown-menu-end text-small shadow">
|
||||
<li><a href="{ROOT_URL}usercp" class="dropdown-item"><i class="fa fa-fw fa-user"></i> Profile</a></li>
|
||||
{topNavRightDropdown}
|
||||
<li><a href="{ROOT_URL}usercp/settings" class="dropdown-item"><i class="fa fa-fw fa-gear"></i> Settings</a></li>
|
||||
<li><hr class="dropdown-divider"></li>
|
||||
<li>
|
||||
<a href="{ROOT_URL}home/logout" class="dropdown-item"><i class="fa fa-fw fa-power-off"></i> Log Out</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
49
app/views/nav/statusLoggedOut.html
Executable file
49
app/views/nav/statusLoggedOut.html
Executable file
@ -0,0 +1,49 @@
|
||||
<div class="dropdown nav-item mx-2">
|
||||
<a
|
||||
href="#"
|
||||
class="d-flex align-items-center text-white text-decoration-none dropdown-toggle"
|
||||
id="userDropdown"
|
||||
data-bs-toggle="dropdown">
|
||||
<i class="fa fa-user"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-dark dropdown-menu-end text-small shadow" style="min-width: 300px;">
|
||||
<form method="post" action="{ROOT_URL}home/login" id="signin" class="px-4 py-3">
|
||||
<input type="hidden" name="rurl" id="rurl" value="{CURRENT_URL}">
|
||||
<input type="hidden" name="token" value="{TOKEN}">
|
||||
|
||||
<!-- Username -->
|
||||
<div class="form-group mb-3">
|
||||
<input id="username"
|
||||
type="text"
|
||||
class="form-control"
|
||||
name="username"
|
||||
placeholder="Username">
|
||||
</div>
|
||||
|
||||
<!-- Password -->
|
||||
<div class="form-group mb-3">
|
||||
<input id="password"
|
||||
type="password"
|
||||
class="form-control"
|
||||
name="password"
|
||||
placeholder="Password">
|
||||
</div>
|
||||
|
||||
<!-- Remember Me -->
|
||||
<div class="form-check form-switch mb-3">
|
||||
<input class="form-check-input" type="checkbox" role="switch" name="remember" id="remember" value="true">
|
||||
<label class="form-check-label" for="remember">Stay Logged In</label>
|
||||
</div>
|
||||
|
||||
<!-- Submit and Register Buttons -->
|
||||
<div class="d-flex gap-1">
|
||||
<button name="submit" value="submit" type="submit" class="btn btn-primary flex-fill">
|
||||
Sign in
|
||||
</button>
|
||||
<a href="{ROOT_URL}register" class="btn btn-outline-primary flex-fill">
|
||||
Create new
|
||||
</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
5
app/views/nav/usercp.html
Executable file
5
app/views/nav/usercp.html
Executable file
@ -0,0 +1,5 @@
|
||||
<ul class="nav nav-tabs justify-content-center mt-4" role="tablist">
|
||||
{LOOP}
|
||||
<li class="nav-item context-main-bg mx-md-1"><a href="{url}" class="nav-link context-main">{name}</a></li>
|
||||
{/LOOP}
|
||||
</ul>
|
Reference in New Issue
Block a user