Refactor
This commit is contained in:
parent
e674c5bb86
commit
b4cc63387b
6 changed files with 8 additions and 6 deletions
|
@ -16,7 +16,8 @@ $page->navigation();
|
|||
<main>
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">Welcome to wishthis</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
<h2 class="ui header">Welcome to wishthis</h2>
|
||||
<p>
|
||||
wishthis is a simple, intuitive and modern plattform to create,
|
||||
manage and view your wishes for any kind of occasion.
|
||||
|
|
|
@ -31,7 +31,7 @@ $page->navigation();
|
|||
<main>
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">Login</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<form class="ui form" method="post">
|
||||
<div class="field">
|
||||
|
|
|
@ -26,7 +26,7 @@ $page->navigation();
|
|||
<main>
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">Register</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<form class="ui form" method="post">
|
||||
<div class="field">
|
||||
|
|
|
@ -26,7 +26,8 @@ $page->navigation();
|
|||
<main>
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">Create a wishlist</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<form class="ui form" method="post">
|
||||
<div class="field">
|
||||
<label>Name</label>
|
||||
|
|
|
@ -23,7 +23,7 @@ $user = new User();
|
|||
<main>
|
||||
<div class="ui container">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">Add a product</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
|
||||
<form class="ui form" method="post">
|
||||
<div class="field">
|
||||
|
|
|
@ -25,7 +25,7 @@ if (isset($_GET['wishlist'])) {
|
|||
<div class="ui container">
|
||||
<div class="ui horizontal segments">
|
||||
<div class="ui segment">
|
||||
<h1 class="ui header">View wishlist</h1>
|
||||
<h1 class="ui header"><?= $page->title ?></h1>
|
||||
<p>Please select a wishlist to view.</p>
|
||||
|
||||
<form class="ui form" method="get">
|
||||
|
|
Loading…
Reference in a new issue