File size: 487 Bytes
0157ea9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Create Issue</title>
</head>
<body>
    <h1>Create Issue</h1>
    <form action="/create_issue" method="POST">
        <input type="text" name="title" placeholder="Issue Title" required><br><br />
        <textarea name="description" placeholder="Issue Description" required rows="4" cols="50"></textarea><br><br />
        <input type="submit" value="Create Issue">
    </form>
</body>
</html>