8381483f79
Add the front-end sources of the new back-office. The front-end doesn't have any business logic, it only has the pages and the components, so it's purely UI. The front-end was developed in a separate repository until was completed. Change-Id: I382e50789d6b929a67b8a0b887563ef48cb1473d
17 lines
337 B
HTML
17 lines
337 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Storj - Admin</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
|
|
</html>
|