2023-05-07 22:08:21 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
2023-10-08 03:01:02 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<script src="/webui.js"></script>
|
2023-08-30 21:41:59 -04:00
|
|
|
|
2023-10-08 03:01:02 +02:00
|
|
|
<link rel="icon" type="image/png" href="img/icon.png" />
|
|
|
|
<title>Text Editor in C using WebUI</title>
|
|
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
|
|
<link rel="stylesheet" href="css/lucario.css" />
|
|
|
|
<link rel="stylesheet" href="css/codemirror.min.css" />
|
|
|
|
<link rel="stylesheet" href="css/all.min.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="topbar"></div>
|
|
|
|
<nav>
|
|
|
|
<button id="open-btn" title="Open file" type="button"><i class="fas fa-folder-open"></i></button>
|
|
|
|
<button id="save-btn" title="Save file" type="button" disabled><i class="fa fa-floppy-disk"></i></button>
|
2024-06-18 12:28:34 -04:00
|
|
|
<button id="close_app" title="Close file" type="button"><i class="fas fa-circle-xmark"></i></button>
|
2023-10-08 03:01:02 +02:00
|
|
|
<button id="about-btn" title="About Info" type="button"><i class="fas fa-question-circle"></i></button>
|
|
|
|
</nav>
|
|
|
|
<div class="main" id="main">
|
|
|
|
<textarea id="editor"></textarea>
|
|
|
|
</div>
|
|
|
|
<div id="about-box" class="about-box">
|
|
|
|
<div class="about-box-content">
|
|
|
|
<h1>WebUI Text Editor</h1>
|
|
|
|
v1.1
|
|
|
|
<p>Example of a text editor software in C using WebUI library.</p>
|
2025-01-30 15:52:24 -05:00
|
|
|
<p><a href="https://webui.me" target="_blank">webui.me</a> | (C)2025 Hassan Draga</p>
|
2023-10-08 03:01:02 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="js/codemirror.min.js"></script>
|
|
|
|
<script src="js/xml.min.js"></script>
|
|
|
|
<script src="js/css.min.js"></script>
|
|
|
|
<script src="js/javascript.min.js"></script>
|
|
|
|
<script src="js/clike.min.js"></script>
|
|
|
|
<script src="js/python.min.js"></script>
|
|
|
|
<script src="js/ui.js"></script>
|
|
|
|
</body>
|
2023-05-07 22:08:21 -04:00
|
|
|
</html>
|