mirror of
https://github.com/gamaio/UnPS-Short.git
synced 2024-11-13 04:37:26 +00:00
Add Google Ads
This hasn't been implemented yet, but it's a work in progress. I'm planning on only having one ad display on the page under the message. Something else that needs to be done is a loading animation where the message will appear as the AJAX processes the request
This commit is contained in:
parent
d19f7f8ab8
commit
53066fac04
@ -243,7 +243,7 @@ ul.nav li.dropdown:hover > ul.dropdown-menu {
|
||||
|
||||
#privacy-link, #tos-link, #reg-link{
|
||||
float: right;
|
||||
padding-right: 10px;
|
||||
padding-right: 2%;
|
||||
color: #eee;
|
||||
}
|
||||
|
||||
@ -299,4 +299,10 @@ h2 {
|
||||
width: 100%;
|
||||
font-size: 12px;
|
||||
line-height: 1.428561429;
|
||||
}
|
||||
|
||||
.gab{
|
||||
background: url(http://placehold.it/570x80.png);
|
||||
border-radius: 5px;
|
||||
max-width: 570px;
|
||||
}
|
BIN
assets/images/Untitled.png
Normal file
BIN
assets/images/Untitled.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
23
index.php
23
index.php
@ -80,12 +80,13 @@
|
||||
<div id="wrap">
|
||||
<?php include('navbar.php'); ?>
|
||||
|
||||
<div class="container" style="float:center;padding-bottom:7%;">
|
||||
<div class="container" style="float:center;padding-bottom:7%;">
|
||||
<p></p>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<form class="form-shorten" id="form-shorten">
|
||||
|
||||
<h2 class="form-shorten-heading">Please give me a link to shorten...</h2>
|
||||
<input type="text" id="link" class="form-control" name="link" placeholder="http://" autofocus>
|
||||
<div id="shorten-password">
|
||||
@ -103,8 +104,24 @@
|
||||
<label class="btn btn-primary" id="dellab" style="color:#eee;"><input type="radio" id="dellink" name="linkmod" value="dellink">Delete Link</label>
|
||||
<label class="btn btn-primary" id="replab" style="color:#eee;"><input type="radio" id="replink" name="linkmod" value="replink">Report Link</label>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
<div id="message"></div>
|
||||
<div id="message">
|
||||
<div class="gab" align="center">
|
||||
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
||||
<!-- unps.bottom -->
|
||||
<ins class="adsbygoogle"
|
||||
style="display:block"
|
||||
data-ad-client="ca-pub-6762927271223365"
|
||||
data-ad-slot="7270772487"
|
||||
data-ad-format="auto"></ins>
|
||||
<script>
|
||||
(adsbygoogle = window.adsbygoogle || []).push({});
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -133,7 +150,7 @@
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
$.post("process.php?token=<?php echo $token; ?>", $(this).serialize(), function(data){
|
||||
$("#message").hide().html(data).fadeIn("fast");
|
||||
$("#message").hide().html(data+'<br /><div class="gab"></div>').fadeIn("fast");
|
||||
if($('#error').length){
|
||||
$('#short-button').removeClass('btn-primary');
|
||||
$('#short-button').removeClass('btn-success');
|
||||
|
Loading…
Reference in New Issue
Block a user