Commit c4a87898 by Ansab Ali

UI fixes*

parent a076a4b7
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -5,7 +5,19 @@ Template Name: Blog Page
?>
<?php get_header(); ?>
<div style="position: relative;text-align: center;">
<img style="width: 100%" src="<?php echo get_template_directory_uri(); ?>/assets/images/banner-image.png" alt="">
<div style="position: absolute;top: 10%;left: 42%;">
<h2 style="font-size: 45px; ">BLOG NEWS</h2>
</div>
<div style="position: absolute;top: 37%;left: 22%;">
<p style="width: 73%"> This is some text and will be replaced by original content
this is some text and will be replaced by original content.
this is some text and will be replaced by original content.
this is some text and will be replaced by original content.
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
......
......@@ -6,8 +6,9 @@ Template Name: Summary Page
get_header();
$domain = '';
$batchId = '';
if ( isset( $_GET['domain'] ) ) {
$domain = $_GET['domain'];
$domain = $_GET['domain'];
$domain = preg_replace('#^https?://#', '', $domain);
} else if (isset($_GET['batchId'])) {
$batchId = $_GET['batchId'];
......@@ -247,7 +248,7 @@ if ( isset( $_GET['domain'] ) ) {
<div class="container" id="top-hostings">
<?php
$page = get_page_by_title( TOP_HOSTING );
echo $page->post_content;
echo $page->post_content;
?>
</div>
<!-- Server Response Section Code End-->
......@@ -328,8 +329,11 @@ if ( isset( $_GET['domain'] ) ) {
}
function parseData(response) {
console.log(typeof response);
let newResults = JSON.parse(response).newData;
let oldData = JSON.parse(response).oldData;
console.log(newResults);
console.log(oldData);
reviewTableDetailsBody.innerHTML = '';
reviewData.style.display = 'flex';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment