forked from szanata/imei-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=9" >
<![endif]-->
<meta name="author" content="Stéfano Stypulkowski">
<meta name="robots" content="index,follow">
<meta name="description" content="A online cellphone IMEI validator app!">
<meta name="keywords" content="cellphone tool, IMEI, validator">
<title>Cellphone IMEI Validator</title>
<link type="text/css" rel="stylesheet" href="imei.css" />
</head>
<body>
<a href="http://github.com/madeinstefano/imei-validator" target="_blank">
<img src="https://s3.amazonaws.com/github/ribbons/forkme_left_darkblue_121621.png" alt="Fork me on GitHub"/>
</a>
<div id="title">
<span>imei validator</span>
</div>
<div id="imei_bar">
<div id="controls">
<input id="imei" maxlength="15"/>
<button id="validate">ok</button>
<div style="clear:both;"></div>
</div>
<div id="result">
<span id="message"></span> <a>try again</a>
</div>
</div>
<p>Just type an IMEI code in the field above and click in "ok" button or type enter.</p>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="imei.js"></script>
</body>
</html>