2020-07-16 15:51:46 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Dashboard - Caddy</title>
|
2023-08-11 12:03:17 -04:00
|
|
|
{{import "/includes/account/head.html"}}
|
|
|
|
{{template "account-head"}}
|
|
|
|
<link rel="stylesheet" href="/resources/css/account/dashboard.css{{template "cacheBust"}}">
|
|
|
|
<script src="/resources/js/account/dashboard.js{{template "cacheBust"}}"></script>
|
2020-07-16 15:51:46 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
2022-02-10 02:30:58 +07:00
|
|
|
{{include "/includes/account/nav.html"}}
|
2020-07-16 15:51:46 -06:00
|
|
|
<main class="dashboard">
|
|
|
|
<section>
|
|
|
|
<h1 class="pad">Your packages<a href="/account/register-package" class="gray button float-right">Register package</a></h1>
|
|
|
|
<table id="user-packages">
|
|
|
|
<tr>
|
|
|
|
<th>Import path</th>
|
|
|
|
<th class="text-center"><span class="help" title="Whether package and module documentation is visible on the website.">Listed</span></th>
|
|
|
|
<th class="text-center"><span class="help" title="Whether visitors can download Caddy with this package plugged in.">Available</span></th>
|
|
|
|
<th>Downloads</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
<!-- Filled by JS -->
|
|
|
|
</table>
|
|
|
|
<!-- <div class="text-right pad">
|
|
|
|
<a href="/account/register-package" class="gray button">Register package</a>
|
|
|
|
</div> -->
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
2023-08-11 12:03:17 -04:00
|
|
|
</html>
|