mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-12 19:50:04 +05:00
26 lines
784 B
HTML
26 lines
784 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<link href="images/retroshare.svg" rel="icon" data-n-head="true" type="image/svg" />
|
|
<title>RetroShare</title>
|
|
<script src="app.js"></script>
|
|
</head>
|
|
|
|
<body onload="load_ui();">
|
|
<div id="main">
|
|
<h3>Javascript not found!</h3>
|
|
<script type="text/javascript">
|
|
function load_ui() {
|
|
var main = require('main');
|
|
}
|
|
</script>
|
|
<noscript>Sorry but JavaScript is needed here! Please enable it in your browser.</noscript>
|
|
</div>
|
|
<div id="notification-container"></div>
|
|
<div id="modal-container"></div>
|
|
</body>
|
|
</html>
|