This commit is contained in:
Devdatt Bhatt 2026-05-27 22:40:43 +00:00
parent 53d5179d05
commit 3b52951c65
2 changed files with 28 additions and 1 deletions

View File

@ -190,6 +190,33 @@ include 'header.php';
</div>
</div>
</div>
<!-- External Links Card -->
<div class="card wide">
<h3 style="margin-top:0;">External Links</h3>
<div class="input-wrap">
<div class="input-group">
<input type="text" name="website_url" placeholder=" " value="<?php echo htmlspecialchars(getValue($saved_data, 'website_url')); ?>">
<label>Website URL</label>
</div>
<div class="input-group">
<input type="text" name="facebook_url" placeholder=" " value="<?php echo htmlspecialchars(getValue($saved_data, 'facebook_url')); ?>">
<label>Facebook URL</label>
</div>
<div class="input-group">
<input type="text" name="youtube_url" placeholder=" " value="<?php echo htmlspecialchars(getValue($saved_data, 'youtube_url')); ?>">
<label>YouTube URL</label>
</div>
<div class="input-group">
<input type="text" name="telegram_url" placeholder=" " value="<?php echo htmlspecialchars(getValue($saved_data, 'telegram_url')); ?>">
<label>Telegram URL</label>
</div>
<div class="input-group">
<input type="text" name="linkedin_url" placeholder=" " value="<?php echo htmlspecialchars(getValue($saved_data, 'linkedin_url')); ?>">
<label>LinkedIn URL</label>
</div>
</div>
</div>
</div>
<div style="text-align:center; width:100%; margin: 40px 0;">

View File

@ -9,7 +9,7 @@ https://github.com/shreebhattji/Urmi/blob/main/licence.md
*/
exec("sudo chmod 444 /sys/class/dmi/id/product_uuid");
$version = "12.30";
$version = "12.31";
function fail(string $msg): never
{