-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmiedit-new.html
28 lines (25 loc) · 976 Bytes
/
miedit-new.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Create a page − MiEdit</title>
<link rel="stylesheet" href="library/bootstrap4/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<import src="import/main-menu.html"></import>
<div class="container theme-showcase" role="main">
<h1>Create a page</h1>
<form action="miedit-page.html" method="get">
<label for="new-page-name">Page name</label>
<input type="text" id="new-page-name" name="page" />
<input type="submit" value="create" />
</form>
</div>
<script src="library/jquery/jquery.js"></script>
<script src="library/importHTML/importHTML.js"></script>
<script src="library/bootstrap4/js/bootstrap.min.js"></script>
</body>
</html>