Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
success.phtml
Go to the documentation of this file.
1 <?php
7 // @codingStandardsIgnoreFile
8 
9 ?>
10 <div class="content-success">
11 
12  <h1 class="jumbo-title">
13  <span class="jumbo-icon icon-success-round"></span>
14  Success
15  </h1>
16 
17  <p>Please keep this information for your records:</p>
18 
19  <p><strong>Magento Admin Info:</strong></p>
20 
21  <dl class="list-definition" id="admin-info">
22  <dt>Username:</dt>
23  <dd>{{admin.username}}</dd>
24 
25  <dt>Email:</dt>
26  <dd>{{admin.email}}</dd>
27 
28  <dt>Password:</dt>
29  <dd>******</dd>
30 
31  <dt>Your Store Address:</dt>
32  <dd>
33  <a href="{{url.front}}" target="_blank">{{url.front}}</a>
34  </dd>
35 
36  <dt>Magento Admin Address:</dt>
37  <dd>
38  <a href="{{url.admin}}" target="_blank">{{url.admin}}</a>
39  </dd>
40 
41  <div class="message message-notice">
42  <span class="message-text">
43  Be sure to bookmark your unique URL and record it offline.
44  </span>
45  </div>
46 
47  <dt>Encryption Key:</dt>
48  <dd>{{config.encrypt.key}}</dd>
49  </dl>
50 
51  <p>
52  <strong>Database Info:</strong>
53  </p>
54 
55  <dl id="db-info" class="list-definition">
56  <dt>Database Name:</dt>
57  <dd>{{db.name}}</dd>
58 
59  <dt>Username:</dt>
60  <dd>{{db.user}}</dd>
61 
62  <dt>Password:</dt>
63  <dd>******</dd>
64  </dl>
65 
66  <p class="bold" ng-repeat="message in messages">{{message}}</p>
67  <?php if ($this->isSampleDataErrorInstallation) : ?>
68  <div class="message message-warning">
69  <span class="message-text"><strong>Something went wrong while installing sample data.</strong> Please check <code>var/log/system.log</code> for details. You can retry installing the data now or just start using Magento.</span>
70  </div>
71  <?php endif; ?>
72  <div ng-show="config.address.actual_base_url">
73  <a
74  class="btn btn-large btn-prime"
75  href="{{url.admin}}"
76  target="_blank"
77  >
78  Launch Magento Admin
79  </a>
80  </div>
81 
82 </div>
endif
Definition: success.phtml:18