nat/assets/index.html

49 lines
2.0 KiB
HTML
Raw Normal View History

2016-06-23 01:27:52 +00:00
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Pantsu Paste</title>
2016-06-23 01:32:06 +00:00
<!-- Material Design fonts -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/icon?family=Material+Icons">
2016-06-23 01:27:52 +00:00
<!-- Bootstrap -->
2016-06-23 01:46:50 +00:00
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
2016-06-23 01:27:52 +00:00
2016-06-23 01:46:50 +00:00
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap-material-design.css">
<link rel="stylesheet" type="text/css" href="/assets/css/ripples.min.css">
2016-06-23 01:32:06 +00:00
2016-06-23 01:27:52 +00:00
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
2016-06-23 01:36:25 +00:00
<div class="container-fluid">
<form action="/save" method="post" class="form-horizontal">
<fieldset>
<legend>Pantsu Paste</legend>
<div class="form-group is-empty">
<label for="textArea" class="col-md-2 control-label">Paste</label>
<div class="col-md-10">
<textarea class="form-control" rows="10" id="textArea" name="p"></textarea>
</div>
</div>
</div>
<input type="submit" class="btn btn-raised btn-primary" value="paste">
</form>
</div>
2016-06-23 01:27:52 +00:00
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
2016-06-23 01:46:50 +00:00
<script src="/assets/js/bootstrap.min.js"></script>
<script src="/assets/js/main.js"></script>
2016-06-23 01:27:52 +00:00
</body>
2016-06-23 01:06:52 +00:00
</html>