-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
45 lines (38 loc) · 1.49 KB
/
index.php
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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitBin</title>
<link rel="stylesheet" href="css/index.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<h1 class="logo">
<span style="color:#000563">B</span>
<span style="color:#D75065">i</span>
<span style="color:#333782">t</span>
<span style="color:#000563">B</span>
<span style="color:#D75065">i</span>
<span style="color:#333782">n</span>
</h1>
<h1 class="tagline"> Share your beautiful code in one click </h1>
<form action="insert.php" method="POST">
<textarea name="content" id="" cols="30" rows="30"></textarea>
<div class="container">
<label for="syntax-highlighting" class="label">Syntax Highlighting:</label>
<select name="syntax-highlighting">
<option value="None">None</option>
<option value="PHP">PHP</option>
<option value="HTML">HTML</option>
<option value="CSS">CSS</option>
<option value="SQL">SQL</option>
<option value="JavaScript">JavaScript</option>
<option value="Python">Python</option>
</select>
<button type="submit">Create New Paste</button>
</div>
</form>
</body>
</html>