Skip to content

Commit

Permalink
QuizMode CSA Set 3 Template
Browse files Browse the repository at this point in the history
  • Loading branch information
beingfluid committed Aug 30, 2022
1 parent 2ed3721 commit 3f56384
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@
$scope.itemsPerPage = 1;
$scope.maxSize = 5;
$scope.showAnswerTrue = false;
$scope.totalQuestions = itemsDetails.length;

$scope.numOfPages = function () {
return Math.ceil( itemsDetails.length / $scope.itemsPerPage );
Expand Down
3 changes: 2 additions & 1 deletion ucsa1.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<main class="px-3">
<main class="px-3" style="font-family: 'Harmattan'; font-size: 22px;">
<div style="text-align: center;">
<h1>Servicenow: Certified System Administrator</h1>
<h3>( Practice Set 2 )</h3>
Expand All @@ -12,6 +12,7 @@ <h3>( Practice Set 2 )</h3>
<div class="shadow-1-strong" style="color: rgb(255, 0, 132)">
<strong>{{ itilQue['que']}}</strong>
</div>
<br />
<ol type="A">
<li ng-repeat="itilQueOption in itilQue['opt']" ng-bind-html="itilQueOption"></li>
</ol>
Expand Down
5 changes: 4 additions & 1 deletion ucsanew1.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ <h1>Servicenow: Certified System Administrator</h1>
<h3>( Practice Set 3 )</h3>
</div>
<br />

<label>Current Que: </label><input type="number" min="1" max="totalQuestions" ng-model="curPage" /><span style="text-align: center;vertical-align: top;"> / {{totalQuestions}}</span>

<div class="container py-5 h-100" ng-repeat="itilQue in filteredItems">

<div class="shadow-1-strong" style="font-weight: bold; color: rgb(255, 0, 132)">
<p>{{ itilQue['que']}}</p>
<p>Que. {{curPage}}) {{ itilQue['que']}}</p>
</div>
<ol type="A">
<li ng-repeat="itilQueOption in itilQue['opt']" ng-bind-html="itilQueOption"></li>
Expand Down

0 comments on commit 3f56384

Please sign in to comment.