/ public / index.html
index.html
 1  <!DOCTYPE html>
 2  <html lang="ru">
 3  <head>
 4    <meta charset="UTF-8" />
 5    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 6    <title>LisGift Market</title>
 7    <link rel="stylesheet" href="/css/style.css" />
 8    <style>
 9      body {
10        background-color: #111;
11        color: #eee;
12        font-family: sans-serif;
13        margin: 0;
14        padding: 2rem;
15        text-align: center;
16      }
17      h1 {
18        font-size: 2em;
19        color: #ff5555;
20      }
21      .warning {
22        margin-top: 2rem;
23        font-size: 1.2em;
24        color: #ccc;
25      }
26      .button {
27        margin-top: 2rem;
28        padding: 0.75rem 1.5rem;
29        font-size: 1rem;
30        border: none;
31        background-color: #444;
32        color: white;
33        cursor: pointer;
34        border-radius: 0.5rem;
35      }
36      .button:hover {
37        background-color: #666;
38      }
39    </style>
40  </head>
41  <body>
42    <h1>Минздрав в последний раз предупреждает</h1>
43    <h2>подарки, от которых хочется лечь.</h2>
44    <p class="warning">Вы входите на рынок LisGift. Это место не прощает ошибок.</p>
45  
46    <button class="button" onclick="alert('Внимание: портал ещё не готов!')">Продолжить</button>
47    <section id="registerForm">
48  	<fieldset>
49  		<legend>Registrations</legend>
50  
51  	<form action="#" id="registerForm">
52  		<span for='regName'>Имя: </span><input id="regName" type="text" name="regName"/>
53  		<span for='regPassword'>Пароль: </span><input id="regPassword" type="text" name="regPassword"/>
54  		<span for='regCaptcha'>Капча: </span><input id="regCaptcha" type="text" name="regCaptcha"/>
55  
56  		<label for='captcha'></label><div id="captcha"></div>
57  		<button onclick="getCaptcha()">Обновить капчу</button>
58  		<button id='regButton' onclick="testReg()">Reg</button>
59  	</form>
60  	</fieldset>
61  	
62    </section>
63    <script src="/js/main.js"></script>
64  </body>
65  </html>