-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateone-error.html
More file actions
37 lines (29 loc) · 1.01 KB
/
createone-error.html
File metadata and controls
37 lines (29 loc) · 1.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Create a Site</title>
<!-- Bootstrap CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS-->
<link href="css/createone-custom.css" rel="stylesheet">
</head>
<body>
<img src="images/launchdrop_logo_small.png"/>
<h1>Create a Site</h1>
<form name="createform" action="createcallback" method="post">
<input type="text" name="sitename" placeholder="name your site!" class="new-name"></br>
<span class="error" id="name-error" type="hidden">That name is already taken.</span></br>
<input type="submit" class="btn btn-primary" value="Submit">
</form>
<!-- scripts -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
</body>
<script>
console.log($('#name-error').fadeIn(1000));
</script>
</html>