69 lines
1.8 KiB
HTML
69 lines
1.8 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>cdadmin</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://unpkg.com/bootstrap@4.1.0/dist/css/bootstrap.min.css"
|
|
/>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<a href="#" class="js-signin">Login</a>
|
|
<div class="app">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>cdadmin</h1>
|
|
</div>
|
|
<div class="section">
|
|
<h2>Production</h2>
|
|
<p>
|
|
URL: <a href="#">URL</a><br />
|
|
Status: <br />
|
|
Branch: <br />
|
|
Commit:
|
|
</p>
|
|
<p>
|
|
<button class="btn btn-primary">Rebuild</button>
|
|
</p>
|
|
</div>
|
|
<section>
|
|
<h2>Staging</h2>
|
|
<p>
|
|
URL: <a href="#">URL</a><br />
|
|
Status: <br />
|
|
Branch: <br />
|
|
Commit:
|
|
</p>
|
|
<p>
|
|
<button class="btn btn-primary">Rebuild</button>
|
|
<button class="btn btn-primary">Promote</button>
|
|
</p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<div class="pocket"></div>
|
|
<script src="https://mock.pocketid.app/pocket/consumer.js"></script>
|
|
<script>
|
|
document.body
|
|
.querySelector('.js-signin')
|
|
.addEventListener('click', Pocket.openSignin);
|
|
</script>
|
|
<script src="https://unpkg.com/vue@2.6.12/dist/vue.js"></script>
|
|
<script src="https://unpkg.com/axios@0.20.0/dist/axios.min.js"></script>
|
|
<script>
|
|
new Vue({
|
|
el: '.app',
|
|
data: {},
|
|
methods: {
|
|
login: function (ev) {
|
|
ev.preventDefault();
|
|
ev.stopPropagation();
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|