-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (62 loc) · 3.01 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang= "en">
<head>
<meta charset= "utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>URL Shortener</title>
<link href= "css/main.css" rel= "stylesheet"/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" media="screen" title="no title">
</head>
<body>
<main class="container">
<div class="row">
<header>
<nav>
<ul class="nav nav-pills">
<li role="presentation" class="disabled"><a href="index.html">Home</a></li>
<li role="presentation" class=""><a href="edit.html">Edit Short Link</a></li>
<li role="presentation" class=""><a href="delete.html">Delete Short Link</a></li>
<li role="presentation" class=""><a href="displayAllRecords.html">Show All Records</a></li>
</ul>
</nav>
</header>
<div class="page-header">
<h1>Maumasi.fy <small>a super awesome URL shortener!</small></h1>
</div>
</div>
<div class="row">
<!-- <form class="" action="/api/v1/url" method="post"> -->
<label for="basic-url">Maumasi.fy your URL</label>
<div class="input-group">
<span class="input-group-addon" id="basic-addon3">URL you want to Maumasi.fy in there <span class="fa fa-arrow-circle-right"></span></span>
<input type="text" class="form-control original-url" id="basic-url" aria-describedby="basic-addon3">
</div>
<button type="button" class="btn-shorten-url-submit btn btn-success col-xs-4 col-offset-xs-4 col-xs-offset-4" name="button">Maumasi.fy it!</button>
<!-- </form> -->
</div>
<div class="row">
<div class="link-wrapper alert alert-info" role="alert">
<p class="">
Original URL: <a href="advadsv" class=" oldUrl alert-link">...</a>
</p>
</div>
<div class="link-wrapper alert alert-success" role="alert">
<p class="">
Maumasi.fy URL: <a href="" class=" newUrl alert-link">...</a>
</p>
</div>
<!-- <p class="oldUrl label label-warning"></p> -->
<!-- <p class="newUrl"></p> -->
</div>
</main>
<!-- Notes -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/jquery-1.11.3.min.js"></script>
<!-- Boostrap JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>