File size: 1,638 Bytes
9c5671b
 
 
 
 
 
 
7adc29d
9c5671b
 
 
 
 
48c68c7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9c5671b
 
7adc29d
9c5671b
 
 
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
<!DOCTYPE html>
<html lang="fr">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>3GPP Specification Visualizor</title>
    <link rel="stylesheet" href="static/style.css">
</head>

<body>
    <div class="header">
        <h1>Visualiseur de Spécifications 3GPP</h1>
        <div class="tabs">
            <button class="tablinks active" onclick="openTab(event, 'tab1')" data-loading="Veuillez charger un fichier de spécification 3GPP">Fichier JSON</button>
            <button class="tablinks" onclick="openTab(event, 'tab2')" data-loading="Veuillez chercher une spécification 3GPP">Spécification</button>
        </div>
        <div id="tab1" class="tabcontent">
            <div class="file-input-container"> <input type="file" id="fileInput" accept=".json">
                <div id="fileInfo"></div>
            </div>
            <div id="document-container">

            </div>
        </div>
        <div id="tab2" class="tabcontent">
            <div class="file-input-container">
                <label for="specInput">Spécification N°</label>
                <input type="text" id="specInput" style="width: 45px;">
                <label for="versionInput">Version <input type="checkbox" id="versCheck"></label>
                <input type="text" id="versionInput" style="width: 45px;" disabled>
                <button onclick="handleSpecSearch()">Afficher</button>
            </div>
            <div id="document-container">
                
            </div>
        </div>
    </div>
    <script src="static/script.js"></script>
</body>

</html>