forked from braintree/braintree_php_example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
28 lines (26 loc) · 924 Bytes
/
header.php
File metadata and controls
28 lines (26 loc) · 924 Bytes
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
<header class="main">
<div class="container wide">
<div class="content slim">
<div class="set">
<div class="fill">
<a class="pseudoshop" href="/">PSEUDO<strong>SHOP</strong></a>
</div>
<div class="fit">
<a class="braintree" href="https://developers.braintreepayments.com/guides/drop-in" target="_blank">Braintree</a>
</div>
</div>
</div>
</div>
<div class="notice-wrapper">
<?php if(isset($_SESSION["errors"])) : ?>
<div class="show notice error notice-error">
<span class="notice-message">
<?php
echo($_SESSION["errors"]);
unset($_SESSION["errors"]);
?>
<span>
</div>
<?php endif; ?>
</div>
</header>