28 lines
804 B
HTML
28 lines
804 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Uestibulum Greeter</title>
|
|
|
|
<link rel=stylesheet href=css/font-awesome.min.css >
|
|
<link rel=stylesheet href=css/lightdm-uestibulum.css >
|
|
|
|
</head>
|
|
<body>
|
|
<img id=bg src="img/background.jpg">
|
|
|
|
<div id=power-panel onmouseout='hidePowerOptions(event)'>
|
|
<div id=power-button onclick='showPowerOptions()'><i class="fa fa-power-off fa-3x"></i></div>
|
|
<div id=power-options class=visible>
|
|
<ul>
|
|
<li><i class='fa fa-moon-o'></i> Suspend</li>
|
|
<li><i class='fa fa-refresh'></i> Restart</li>
|
|
<li><i class='fa fa-power-off'></i> Shutdown</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<script type=application/javascript src=js/lightdm-uestibulum.js ></script>
|
|
</body>
|
|
</html>
|