mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-05 05:21:03 +08:00
19 lines
370 B
HTML
19 lines
370 B
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="/main.css">
|
|
</head>
|
|
|
|
<body data-wails-drag>
|
|
<div id="logo"></div>
|
|
<div id="input" data-wails-no-drag>
|
|
<a id="close" onclick="closeme()">X</a>
|
|
<input id="name" type="text"></input>
|
|
<button onclick="greet()">Greet</button>
|
|
</div>
|
|
<div id="result"></div>
|
|
|
|
<script src="/main.js"></script>
|
|
</body>
|
|
|
|
</html> |