25 lines
617 B
HTML
25 lines
617 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button id="settings" onclick="settings()">Settings</button>
|
|
<div id="editNode">
|
|
<p id="text">Status updating</p>
|
|
<select id="mySelect"></select>
|
|
<textarea id="inputName"></textarea>
|
|
<textarea id="inputLocation"></textarea>
|
|
<button id="button" onclick="changeText()">Change Information</button>
|
|
</div>
|
|
</body>
|
|
<header>
|
|
<script src="text.js"></script>
|
|
</header>
|
|
|
|
</html> |