mirror of
https://github.com/unraid/webgui.git
synced 2026-04-23 02:31:45 -05:00
9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
Menu="About"
|
|
Title="EULA"
|
|
---
|
|
<?PHP
|
|
$file = "/boot/license.txt";
|
|
if (file_exists($file)) echo Markdown(file_get_contents($file)); else echo Markdown("** No license file present! **");
|
|
?>
|
|
<button type="button" onclick="done()">Done</button>
|