File size: 1,743 Bytes
68694b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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.0">
    <title>Name Generator</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
    <div>
        <div class="wave"></div>
        <div class="wave"></div>
        <div class="wave"></div>

        <div class="container">
            <h2 class="title">Name Generator</h2>
            <div class="result">
                <div class="result__title field-title">Generated Name</div>
                <div class="result__info right">click to copy</div>
                <div class="result__info left">copied</div>
                <div class="result__viewbox" id="result">CLICK GENERATE</div>
                <button id="copy-btn" style="--x: 0; --y: 0"><i class="far fa-copy"></i></button>
            </div>
            <div class="length range__slider" data-min="4" data-max="32">
                <div class="length__title field-title" data-length='0'>length:</div>
                <input id="slider" type="range" min="4" max="32" value="16" />
            </div>
        
            <button onclick="generateName()" class="btn generate" id="generate">Generate Name</button>
        </div>
     </div>
    <script src="{{url_for('static', filename='js/index.js')}}" type="text/javascript"></script>    
</body>
</html>