-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added demo news view in news.php, expandable rules, about added in ab…
…out.php
- Loading branch information
Showing
4 changed files
with
86 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,54 @@ | ||
<?php include('head.php'); ?> | ||
<table class="view"> | ||
<tr class="sector"><td colspan="4" class="sector">Information</td></tr> | ||
<tr class="stock"><td class="name">About Us</td></tr> | ||
<tr class="stock" onclick="document.location = 'https://github.com/swghosh/Campaign-Treasurer-Companion-Web-App/blob/master/LICENSE.MD';"><td class="name">License</td></tr> | ||
<tr class="stock"><td class="name">Rules, Regulations and Disclaimer</td></tr> | ||
<tr class="stock" onclick="document.location = 'https://github.com/swghosh/Campaign-Treasurer-Companion-Web-App';"><td class="name">Open-source Project on GitHub</td></tr> | ||
<td colspan="4" class="sector copyright">© Campaign Treasurer, Prayas 17 Fest, Christ University.<br>Designed and Developed by Swarup Ghosh.</td> | ||
|
||
<tr class="stock" id="about"><td class="name">About Us <span id="about" class="arrow">⌃</span></td></tr> | ||
<tr class="news" id="about"><td class="time">Campaign Treasurer Web App</td><td class="news">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum dolores ex facilis eum excepturi. Accusantium rem repellat fugit nesciunt pariatur eum itaque odio minima autem, aperiam, eligendi quidem labore nam. Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit consequatur, facere necessitatibus, officia, molestias facilis cumque placeat molestiae aut provident quos deserunt! Impedit est accusantium nisi itaque eos, molestias autem.</td></tr> | ||
|
||
<tr class="stock" id="rules"><td class="name">Rules, Regulations and Disclaimer <span id="rules" class="arrow">⌃</span></td></tr> | ||
<tr class="news" id="rules"><td class="time">Ruleset, Disclaimer</td><td class="news">The list of rules and regulations are to be put up here soon. Thank you for your patience. Request all the participants to go through the same at a later time to be aware of the ruleset that is to abided at all times of the event proceedings. A list of clauses under the head disclaimer are also to be put up here soon.</td></tr> | ||
|
||
<tr class="sector"><td class="sector">Project</td></tr> | ||
|
||
<tr class="stock" onclick="document.location = 'https://github.com/swghosh/Campaign-Treasurer-Companion-Web-App/blob/master/LICENSE.MD';"><td class="name">License <span class="arrow">↗</span></td></tr> | ||
<tr class="stock" onclick="document.location = 'https://github.com/swghosh/Campaign-Treasurer-Companion-Web-App';"><td class="name">Open-source Project on GitHub <span class="arrow">↗</span></td></tr> | ||
|
||
<td colspan="4" class="sector copyright">© Campaign Treasurer, Prayas 17 Fest, Christ University.<br>Designed and Developed by <a href="https://github.com/swghosh" class="author">Swarup Ghosh</a>.</td> | ||
</table> | ||
<script> | ||
var aboutFlag = true; | ||
var rulesFlag = true; | ||
|
||
var aboutItem = document.querySelector('tr.news#about'); | ||
var rulesItem = document.querySelector('tr.news#rules'); | ||
|
||
var aboutArrowSpan = document.querySelector('td.name span.arrow#about'); | ||
var rulesArrowSpan = document.querySelector('td.name span.arrow#rules'); | ||
|
||
document.querySelector('tr.stock#about').onclick = function() { | ||
if(aboutFlag == false) { | ||
aboutArrowSpan.innerHTML = '⌃'; | ||
aboutItem.style.display = 'table-row'; | ||
aboutFlag = true; | ||
} | ||
else { | ||
aboutArrowSpan.innerHTML = '⌄'; | ||
aboutItem.style.display = 'none'; | ||
aboutFlag = false; | ||
} | ||
}; | ||
|
||
document.querySelector('tr.stock#rules').onclick = function() { | ||
if(rulesFlag == false) { | ||
rulesArrowSpan.innerHTML = '⌃'; | ||
rulesItem.style.display = 'table-row'; | ||
rulesFlag = true; | ||
} | ||
else { | ||
rulesArrowSpan.innerHTML = '⌄'; | ||
rulesItem.style.display = 'none'; | ||
rulesFlag = false; | ||
} | ||
}; | ||
</script> | ||
<?php include('foot.php'); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
<?php include('head.php'); ?> | ||
<table class="view"> | ||
<tr class="news"><td class="time">18/08/2017 17:35:53</td><td class="news">We'll be providing you all the updates, live changes to the prices of securities, commodities and crypto-currencies by this web app itself.</td></tr> | ||
<tr class="news"><td class="time">17/08/2017 17:35:53</td><td class="news">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum dolores ex facilis eum excepturi. Accusantium rem repellat fugit nesciunt pariatur eum itaque odio minima autem, aperiam, eligendi quidem labore nam.</td></tr> | ||
<tr class="news"><td class="time">16/08/2017 17:35:53</td><td class="news">Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum dolores ex facilis eum excepturi. Accusantium rem repellat fugit nesciunt pariatur eum itaque odio minima autem, aperiam, eligendi quidem labore nam. Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit consequatur, facere necessitatibus, officia, molestias facilis cumque placeat molestiae aut provident quos deserunt! Impedit est accusantium nisi itaque eos, molestias autem.</td></tr> | ||
</table> | ||
<?php include('foot.php'); ?> |