aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/index.pug
blob: 38d4d2ddb791573fbd0bc3715845d9a718f6a8b6 (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
extends layout

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

    .chat#chat
        button.button.action-button.is-big.is-outlined.is-info#add_contact
            i.fas.fa-plus
        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-danger#delete
            i.fas.fa-trash

        .columns.main.level
            video#video
            .section.column.level-right
                #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)