raylu 2 هفته پیش
والد
کامیت
9ed4f7a29f
1فایلهای تغییر یافته به همراه33 افزوده شده و 0 حذف شده
  1. 33 0
      www/nv1.html

+ 33 - 0
www/nv1.html

@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<meta charset="UTF-8">
+	<title>PrUn NV1</title>
+	<link rel="stylesheet" type="text/css" href="style.css">
+	<link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
+	<meta name="viewport" content="width=device-width, initial-scale=1">
+	<meta name="theme-color" content="#222">
+</head>
+<body>
+	<a href="/">← back</a>
+	<main class="production">
+		<form>
+			<label>PUNoted API key: <input type="password" size="30" id="api-key"></label>
+			<input type="button" value="fetch" id="fetch">
+		</form>
+		<section id="loader"></section>
+		<div id="nv1"></div>
+	</main>
+	<div id="popover" popover="hint"></div>
+	<script type="module">
+		import {setupProduction} from './production.js';
+		const blueprint = {
+			'NV1': 2,
+		};
+		const buy = new Set([
+			'ROM', 'PE', 'MG', 'MB', 'HD', 'RAM', 'MPC', 'SEN', 'C', 'PG', 'FLX', 'WAI'
+		])
+		setupProduction(blueprint, buy, 'IC1', 1, document.querySelector('#nv1'));
+	</script>
+</body>
+</html>