-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (72 loc) · 3.18 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
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Evolution X - XDA Generator</title>
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Google+Sans:400" rel="stylesheet">
</head>
<body>
<form id="form" method="post">
<div class="card">
<div class="header">
<div class="logo">
<img src="assets/img/logo.png" width="160px">
</div>
<h1>XDA Thread Template Generator</h1>
</div>
<div class="form">
<div class="container">
<div class="input">
<input type="text" id="device_name" placeholder="Device Name" required>
</div>
<div class="input">
<input type="text" id="device_codename" placeholder="Device Codename" required>
</div>
</div>
<div class="container">
<div class="input">
<input type="text" id="name" placeholder="Your Name" required>
</div>
<div class="input">
<input type="text" id="bugs" placeholder='Bugs (Use "--" for new line)'>
</div>
</div>
<div class="container">
<div class="input">
<input type="text" id="xda_url" placeholder="Your XDA Profile URL" required>
</div>
<div class="input">
<input type="text" id="donate_url" placeholder="Your Donate URL">
</div>
</div>
<div class="container">
<div class="input">
<input type="text" id="kernel_source_url" placeholder="Kernel Source URL" required>
</div>
<div class="input"></div>
</div>
<div class="container">
<div class="input">
<span id="copied"></span>
</div>
<div class="input">
<button type="submit" id="generate">Generate</button>
</div>
</div>
</div>
<div class="output">
<textarea readonly onclick="this.focus();this.select()" id="output"></textarea>
</div>
</div>
</form>
<p class="footer">Made with ♥ by <a href="https://github.com/hugwalk">Hugwalk</a> and <a href="https://github.com/coin3x">coin3x</a></p>
<script src="assets/template_5.x.js "></script>
<script src="assets/replacer.js "></script>
</body>
</html>