f5af0e2e04
* WebAdmin improvements * Remove stray div tag * Revert path change * Remove buildserver link * Further simplification * Reduce horizontal padding * Add svg icons * Remove unneeded css * Make login and logout icons colored * Use same capitalization for Log in and Log out * Remove leftover code from old Webadmin design * Remove more leftover code from earlier Webadmin versions * and don't add earlier leftovers back... * PR test * Fix max width overflow * Add missing css changes
25 lines
500 B
HTML
25 lines
500 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Guest Information</title>
|
|
<style>
|
|
html {
|
|
font-family: Tahoma, Verdana, Arial, sans-serif;
|
|
color: #343434;
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Hello! Welcome to the Cuberite WebAdmin.
|
|
</p>
|
|
<p>
|
|
This is a default message, edit <b>files/guest.html</b> to add your own custom message.
|
|
</p>
|
|
</body>
|
|
</html>
|