
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
</style>
</head>
<body>
<!–– Title ––>
<h1>Frequently Asked Questions</h1>
<!–– Questions Number 1 ––>
<button class="accordion">How can I know my leave balance ?</button>
<div class="panel">
<p>You can do that by accessing your Profile</p>
<p><b>Home drop down menu</b> >> <b>My Employee Profile</b> >> <b>Time Management Section</b> >> <b>Time Off Balances</b></p>
</div>
<!–– Questions Number 1 ––>
<!–– Questions Number 2 ––>
<button class="accordion">How can I cancel approved leave ?</button>
<div class="panel">
<p>You can do that by accessing your Profile</p>
<p>Type <b>Update time off</b> in the searching box, then click<b> Update time off</b> - OR you can <a href="https://blogs.sap.com/xi/ui/ect/pages/absence/timeOff.xhtml" target="_blank"> <b>CLICK HERE</b></a> view your time off.</p>
<p><b>locate</b> the desired leave, then click it. After that, click <b>Edit Absence</b> >> From the bottom of the page click<b> Cancel Absence</b> >> then a workflow will be trigger for <b>cancellation approval.</b></p>
</div>
<!–– Questions Number 1 ––>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
</script>
</body>
</html>
Using home page tile will help you to increase your system usability and accessibility, also, using this tool to build your FAQ will help you to build full documentation for your system, I would recommend you as an administrator to the system to start using this tool.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |