74 lines
3.2 KiB
Plaintext
74 lines
3.2 KiB
Plaintext
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Loggedin.aspx.vb" Inherits="login_Logged_IN" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head runat="server">
|
|
<!-- Bootstrap -->
|
|
<html lang="en"></html>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8"/>
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" title="VERAG LoggedIn"/>
|
|
|
|
<link rel="shortcut icon" href="../images/Icons/favicon/favicon.ico" />
|
|
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
|
|
<script src="js/netzwerk.js" type="text/javascript"></script>
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"/>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css"/>
|
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
|
<link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.18.3/dist/bootstrap-table.min.css"/>
|
|
|
|
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
|
|
<script src="js/netzwerk.js" type="text/javascript"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
|
|
<link rel="stylesheet" type="text/css" href="../css/example.css"/>
|
|
|
|
<script type="text/javascript">
|
|
// Vergebe den Event-Handler
|
|
document.onkeydown = handleKeyEvent;
|
|
// Funktion, die den Event verarbeitet
|
|
function handleKeyEvent(e) {
|
|
// MSIE nimmt das Event-Objekt aus window.event, DOM-kompatible Browser aus dem e-Funktionsparameter
|
|
if (!e) e = window.event;
|
|
// keyCode muss 70 sein und ctrlKey true
|
|
if (e.keyCode == 68 && e.ctrlKey) {
|
|
alert('Strg+D wurde gedrückt');
|
|
//topup
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
body{
|
|
background-image:none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="d-flex flex-row bd-highlight mb-3">
|
|
<div class="p-2 bd-highlight" style="width:252px;height:216px;align-content:flex-start;">
|
|
<form id="form1" runat="server">
|
|
|
|
<div style="height:32px;background-image: linear-gradient(to right, #003680 , #0055cc);color:#fff;">
|
|
<center><asp:Label ID="lbl_Loggedin" runat="server" Text="Logged In!" Style="font-weight:900"></asp:Label></center>
|
|
</div>
|
|
<h2> Willkommen zurück!</h2> <asp:LoginName ID="LoginName1" runat="server" />
|
|
<div class="row" id="BTN_World">
|
|
<div class="col-3">
|
|
<asp:LinkButton ID="LogoutButton" target="_parent" href="../login/Logout.aspx" PostBackUrl="../newpageJulius_Sidebar.aspx" runat="server" CssClass="btn btn-primary" Text="Logout" />
|
|
</div>
|
|
<div style="height:/*15px*/1.17096018735363vh;"></div>
|
|
<div class="col-3">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|