frontend: improve readality and fix typo
This commit is contained in:
parent
1eef71923a
commit
bd75157a79
@ -26,7 +26,7 @@
|
|||||||
<div ng-repeat="(k,s) in scene" class="repeatedd-item" style="margin-bottom: 15px;">
|
<div ng-repeat="(k,s) in scene" class="repeatedd-item" style="margin-bottom: 15px;">
|
||||||
|
|
||||||
<div class="card" ng-if="s.type == 'welcome' && !s.params.hide && s.params.kind == 'teams'">
|
<div class="card" ng-if="s.type == 'welcome' && !s.params.hide && s.params.kind == 'teams'">
|
||||||
<div class="card-body">
|
<div class="card-body text-light">
|
||||||
<h1 ng-if="!s.params.notitle">Bienvenue au challenge forensic !</h1>
|
<h1 ng-if="!s.params.notitle">Bienvenue au challenge forensic !</h1>
|
||||||
<p class="lead text-justify">
|
<p class="lead text-justify">
|
||||||
Avant de vous installer, venez récupérer votre clef USB auprès
|
Avant de vous installer, venez récupérer votre clef USB auprès
|
||||||
@ -43,7 +43,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card border-{{s.params.color}}" ng-if="s.type == 'countdown' && !s.params.hide">
|
<div class="card border-{{s.params.color}}" ng-if="s.type == 'countdown' && !s.params.hide">
|
||||||
<div class="card-header bg-{{s.params.color}} text-white" ng-if="s.params.title">
|
<div class="card-header bg-{{s.params.color}} text-light" ng-if="s.params.title">
|
||||||
<h3 style="margin:0"><strong ng-bind="s.params.title"></strong></h3>
|
<h3 style="margin:0"><strong ng-bind="s.params.title"></strong></h3>
|
||||||
</div>
|
</div>
|
||||||
<div ng-controller="CountdownController" ng-init="s.params.end?init(s.params.end):initT(startAt)">
|
<div ng-controller="CountdownController" ng-init="s.params.end?init(s.params.end):initT(startAt)">
|
||||||
@ -53,11 +53,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card" ng-if="s.type == 'welcome' && !s.params.hide && s.params.kind == 'public'">
|
<div class="card" ng-if="s.type == 'welcome' && !s.params.hide && s.params.kind == 'public'">
|
||||||
<div class="card-body">
|
<div class="card-body text-light">
|
||||||
<h1 ng-if="!s.params.notitle">Bienvenue au challenge forensic !</h1>
|
<h1 ng-if="!s.params.notitle">Bienvenue au challenge forensic !</h1>
|
||||||
<p class="lead text-justify">
|
<p class="lead text-justify">
|
||||||
Durant ce challenge, les équipes doivent <strong>remonter des scénarii
|
Durant ce challenge, les équipes doivent <strong>remonter des scénarii
|
||||||
d'attaques</strong> auxquels nos systèmes d'information <strong>font faces
|
d'attaques</strong> auxquels nos systèmes d'information <strong>font face
|
||||||
chaque jour</strong> : fuite de données, compromission d'un poste de
|
chaque jour</strong> : fuite de données, compromission d'un poste de
|
||||||
travail, exploitation de vulnérabilités d'un site web, ...
|
travail, exploitation de vulnérabilités d'un site web, ...
|
||||||
</p>
|
</p>
|
||||||
@ -73,7 +73,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card" ng-if="s.type == 'message' && !s.params.hide">
|
<div class="card" ng-if="s.type == 'message' && !s.params.hide">
|
||||||
<div class="card-body">
|
<div class="card-body text-light">
|
||||||
<h1 ng-if="s.params.title"><strong ng-bind="s.params.title"></strong></h1>
|
<h1 ng-if="s.params.title"><strong ng-bind="s.params.title"></strong></h1>
|
||||||
<p ng-if="s.params.lead" class="lead text-justify" ng-bind="s.params.lead"></p>
|
<p ng-if="s.params.lead" class="lead text-justify" ng-bind="s.params.lead"></p>
|
||||||
<p ng-bind-html="s.params.html" ng-if="s.params.html"></p>
|
<p ng-bind-html="s.params.html" ng-if="s.params.html"></p>
|
||||||
@ -85,15 +85,15 @@
|
|||||||
<div class="card-header bg-{{ s.params.color }} text-white" ng-if="s.params.title">
|
<div class="card-header bg-{{ s.params.color }} text-white" ng-if="s.params.title">
|
||||||
<h3 style="margin:0" ng-bind="s.params.title"></h3>
|
<h3 style="margin:0" ng-bind="s.params.title"></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body" ng-if="s.params.text || s.params.lead">
|
<div class="card-body text-light" ng-if="s.params.text || s.params.lead">
|
||||||
<h4 ng-if="s.params.lead" class="card-title text-justify" ng-bind="s.params.lead"></h4>
|
<h4 ng-if="s.params.lead" class="card-title text-justify" ng-bind="s.params.lead"></h4>
|
||||||
<p class="card-text" ng-bind="s.params.text"></p>
|
<p class="card-text" ng-bind="s.params.text"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body" ng-if="s.params.html" ng-bind-html="s.params.html"></div>
|
<div class="card-body text-light" ng-if="s.params.html" ng-bind-html="s.params.html"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card" ng-if="s.type == 'exercice' && !s.params.hide">
|
<div class="card" ng-if="s.type == 'exercice' && !s.params.hide">
|
||||||
<div class="card-body">
|
<div class="card-body text-light">
|
||||||
<p class="lead">
|
<p class="lead">
|
||||||
<strong>Challenge <em>{{ themes[my.exercices[s.params.exercice].theme_id].exercices[s.params.exercice].title }}</em> du thème {{ themes[my.exercices[s.params.exercice].theme_id].name }}</strong>
|
<strong>Challenge <em>{{ themes[my.exercices[s.params.exercice].theme_id].exercices[s.params.exercice].title }}</em> du thème {{ themes[my.exercices[s.params.exercice].theme_id].name }}</strong>
|
||||||
<small class="authors" ng-if="themes[my.exercices[s.params.exercice].theme_id].authors">par {{ themes[my.exercices[s.params.exercice].theme_id].authors }}</small>
|
<small class="authors" ng-if="themes[my.exercices[s.params.exercice].theme_id].authors">par {{ themes[my.exercices[s.params.exercice].theme_id].authors }}</small>
|
||||||
@ -224,7 +224,7 @@
|
|||||||
<div class="carousel-caption">
|
<div class="carousel-caption">
|
||||||
<p class="text-justify text-bold" style="padding: 5px 16px; font-size: 111%">
|
<p class="text-justify text-bold" style="padding: 5px 16px; font-size: 111%">
|
||||||
Ce challenge met en scène des scénarii d'attaques auxquels
|
Ce challenge met en scène des scénarii d'attaques auxquels
|
||||||
nos systèmes d'information font faces chaque jour.
|
nos systèmes d'information font face chaque jour.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user