Update index.html

This commit is contained in:
Code Hangen 2022-12-14 21:49:39 -03:00 committed by GitHub
parent 7fc5bdd6de
commit 980431c9b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,10 +14,19 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/angular.ui-grid/3/ui-grid.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/angular.ui-grid/3/ui-grid.min.css">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
<style>
body {
background-color: white;
}
.dark-mode {
background-color: #202124;
color: white;
}
</style>
<body ng-controller="BTorrentCtrl" ng-cloak=""> <body ng-controller="BTorrentCtrl" ng-cloak="">
<header> <header>
<h1>βTorrent<span class="version"> v{{$root.version}}</span></h1> <h1>βTorrent<span class="version"> v{{$root.version}}</span></h1>
<div class="views" ng-show="$root.client.torrents.length == 0"><a ng-href="/#">Full</a> | <a ng-href="/download">Single Download</a> | <a ng-href="/view">Stream / View</a></div> <div class="views" ng-show="$root.client.torrents.length == 0"><a ng-href="/#">Full</a> | <a ng-href="/download">Single Download</a> | <a ng-href="/view">Stream / View</a> | <a ng-href="#" href="#" onclick="modeTheme()">Dark/Light</a> </div>
<div class="aligncenter" style="width: 468px; display: inline-block;"> <div class="aligncenter" style="width: 468px; display: inline-block;">
</div> </div>
</header> </header>