wizard-5.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Setup wizard template of page 5
*
* @package LearnDash_Design_Wizard
*
* @var array<string, mixed> $template_details
*/
if ( ! defined( 'ABSPATH' ) ) {
exit();
}
?>
<div class="design-wizard layout-2 step-5">
<div class="header">
<div class="logo">
<?php // phpcs:ignore Generic.Files.LineLength.TooLong?>
<img src="<?php echo esc_url( \LEARNDASH_LMS_PLUGIN_URL . '/assets/images/learndash.svg' ); ?>" alt="LearnDash" />
</div>
</div>
<div class="content">
<div class="icon">
<?php // phpcs:ignore Generic.Files.LineLength.TooLong?>
<img src="<?php echo esc_url( \LEARNDASH_LMS_PLUGIN_URL . '/assets/images/design-wizard/wizard/palette.png' ); ?>" alt="Palette" />
</div>
<div class="title-wrapper">
<h1 class="title"><?php esc_html_e( 'Nice choices', 'learndash' ); ?></h1>
</div>
<div class="progress">
<div class="bar-wrapper">
<div class="bar">
<progress id="progress" value="0" max="100"> 0% </progress>
</div>
<div class="percentage">
<span class="number"></span>
</div>
</div>
<div class="status">
<span class="message"><?php esc_html_e( 'Start building the template', 'learndash' ); ?>...</span>
</div>
</div>
<div class="text">
<p>
<?php
esc_html_e(
'A wizard is never late, nor are they early, they arrive precisely when they mean to.
Give us just a moment as the Wizard summons your template.',
'learndash'
);
?>
</p>
</div>
</div>
<div class="footer"></div>
</div>