Skip to content

Commit

Permalink
wrap up user dashboard for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kuldp18 committed Apr 4, 2024
1 parent c39ea9c commit 90572d1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pages/edit_video.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,12 @@
$video_tag_list = get_video_tags($pdo);
$current_video_tags = get_video_tags_by_video_id($pdo, $video_id);

//print current video tags
print_r($current_video_tags);

?>

<main class="edit">
<h1 class="heading heading--small">Edit Video</h1>
<form action="" class="edit__form">
<form class="edit__form" method="post">
<input type="text" name="title" class="edit__form__input" placeholder="Edit video title" value="<?php
if (isset($video_details['video_title'])) {
echo $video_details['video_title'];
Expand Down

0 comments on commit 90572d1

Please sign in to comment.