Merge branch 'main' of https://github.com/grublox/grublox-site
This commit is contained in:
commit
9add1d7fbf
|
|
@ -4,10 +4,11 @@ A Bootstrap based ROBLOX revival website.
|
|||
# Todo
|
||||
- [ ] Friending system<br>
|
||||
- [x] Making home page optimize on the page size <br>
|
||||
- [ ] User page<br>
|
||||
- [x] User page<br>
|
||||
- [ ] Search (maybe)<br>
|
||||
- [ ] Messaging system<br>
|
||||
- [ ] Make games page grab games from the database<br>
|
||||
- [x] Make games page grab games from the database<br>
|
||||
- [ ] Make game page (game?id=) working with grabbing from db<br>
|
||||
- [ ] Make Create assets/game page<br>
|
||||
- [x] Make Catalog page (functional)<br>
|
||||
- [ ] Make Credits page<br>
|
||||
|
|
|
|||
2
home.php
2
home.php
|
|
@ -42,7 +42,7 @@ $getitstarted->header();
|
|||
<img src="assets/renders/user/headshot?userId=<?php echo (int)htmlspecialchars($user->getID($con, $user->getUsername())); ?>" class="rounded-circle" width=190 height=190></img>
|
||||
<span class="text-center" style="font-size: 2rem; margin-left: 6px;"><?php echo $himsg; ?>, <?php echo htmlspecialchars($user->getUsername()); ?>!</span>
|
||||
<div style="margin-bottom: 50px;"></div>
|
||||
<h4 class=" card-title" style="margin-bottom: 15px;">Friends (2)</h4>
|
||||
<h4 class=" card-title" style="margin-bottom: 15px;">Friends (<?php $q=$con->prepare("SELECT count(*) FROM users");$q->execute();echo $q->fetchColumn(); ?>)</h4>
|
||||
<div class="card shadow-sm" style="height: 11.75rem;">
|
||||
<div class="card-group" style=" margin-left: 10px; margin-top: 10px;">
|
||||
<?php
|
||||
|
|
|
|||
Loading…
Reference in New Issue