aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/index.pug
blob: 79ff2f2ded82e65bd4793f040fe84c963114d713 (plain) (blame)
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
extends layout

block content
    //-
     index.pug
     Copyright (c) 2019, Texx
     License: MIT
         See https://github.com/texxme/Texx/blob/master/LICENSE

    .chat#chat
        .contacts-wrapper
            .is-multiline#contact_list
                .logo
                    img(src='texx.png')
                button.button.action-button.is-big.is-outlined.is-info#add_contact
                    i.fas.fa-plus

        .main-window
            button.button.action-button.is-big.is-outlined.is-success#call
                i.fas.fa-phone
            button.button.action-button.is-big.is-outlined.is-warning#logout
                i.fas.fa-sign-out-alt
            button.button.action-button.is-big.is-outlined.is-black#anonymize
                i.fas.fa-mask
            button.button.action-button.is-big.is-outlined.is-danger#delete
                i.fas.fa-trash

            //video#video
            .section.message-wrapper
                #messages
        .message-field
            input#message.message-input.input(placeholder='Enter a message')
            button#send_message.message-button.button.is-success(type=submit)
                i.fas.fa-paper-plane

    .enter-pin#enter_pin
        .title.has-text-centered Enter a passphrase:
        .subtitle.has-text-centered#pin_message
        .columns.is-centered.is-flex.pin-wrapper
            .column.is-centered.is-flex
                input#1(type='text', maxlength=1, min=0, max=9)
            .column.is-centered.is-flex
                input#2(type='text', maxlength=1, min=0, max=9)
            .column.is-centered.is-flex
                input#3(type='text', maxlength=1, min=0, max=9)
            .column.is-centered.is-flex
                input#4(type='text', maxlength=1, min=0, max=9)