-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo_upload.php
More file actions
34 lines (33 loc) · 905 Bytes
/
video_upload.php
File metadata and controls
34 lines (33 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Created by PhpStorm.
* User: lilis
*/
include('inc.header.php');
include('inc.videos.php');
login('video_upload');
?>
<main class="container">
<div class="row">
<form class="s12" method="POST" action="video_upload_done.php">
<div class="row">
<div class="input-field col s12">
<input type="text" id="url" name="url" autofocus/>
<label for="url">Youtube 공유 URL</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input type="text" id="title" name="title" />
<label for="title">영상 제목</label>
</div>
</div>
<div class="row">
<div class="col s12 center-align">
<button type="submit" class="btn waves-effect waves-light" name="action">Submit<i class="material-icons right">send</i></button>
</div>
</div>
</form>
</div>
</main>
<?php include('inc.footer.php'); ?>