mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-27 15:39:54 +03:00

This will send a normal request and if we receive an 401 status, we send another request with withCredentials = true
73 lines
3 KiB
HTML
73 lines
3 KiB
HTML
<!--
|
|
Copyright (C) 2016 Jones Magloire @Joxit
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<LINK href="node_modules/dialog-polyfill/dialog-polyfill.css" rel="stylesheet" type="text/css">
|
|
<LINK href="node_modules/material-design-lite/dist/material.min.css" rel="stylesheet" type="text/css">
|
|
<LINK href="node_modules/material-design-icons/iconfont/material-icons.css" rel="stylesheet" type="text/css">
|
|
<LINK href="style.css" rel="stylesheet" type="text/css">
|
|
<LINK href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en" rel="stylesheet" type="text/css">
|
|
<title>Docker Registry UI</title>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Always shows a header, even in smaller screens. -->
|
|
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
|
|
<header class="mdl-layout__header">
|
|
<div class="mdl-layout__header-row">
|
|
<!-- Title -->
|
|
<span class="mdl-layout-title">Docker Registry UI</span>
|
|
<menu></menu>
|
|
</div>
|
|
</header>
|
|
<main class="mdl-layout__content">
|
|
<div class="page-content">
|
|
<app></app>
|
|
</div>
|
|
</main>
|
|
<change></change>
|
|
<add></add>
|
|
<remove></remove>
|
|
<footer class="mdl-mini-footer">
|
|
<div class="mdl-mini-footer__left-section">
|
|
<div class="mdl-logo">Docker Registry UI</div>
|
|
<ul class="mdl-mini-footer__link-list">
|
|
<li><a href="https://github.com/Joxit/docker-registry-ui">Contribute on GitHub</a></li>
|
|
<li><a href="https://github.com/Joxit/docker-registry-ui/blob/master/LICENSE">Privacy & Terms</a></li>
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="catalog.tag" type="riot/tag"></script>
|
|
<script src="taglist.tag" type="riot/tag"></script>
|
|
<script src="add.tag" type="riot/tag"></script>
|
|
<script src="change.tag" type="riot/tag"></script>
|
|
<script src="remove.tag" type="riot/tag"></script>
|
|
<script src="menu.tag" type="riot/tag"></script>
|
|
<script src="app.tag" type="riot/tag"></script>
|
|
<script src="node_modules/riot/riot+compiler.min.js"></script>
|
|
<script src="node_modules/riotgear-router/dist/rg-router.min.js"></script>
|
|
<script src="node_modules/dialog-polyfill/dialog-polyfill.js"></script>
|
|
<script src="node_modules/material-design-lite/dist/material.min.js"></script>
|
|
<script src="script.js"></script>
|
|
<script src="http.js"></script>
|
|
</body>
|
|
|
|
</html>
|