summaryrefslogtreecommitdiffstats
path: root/templates/repo/create.tmpl
blob: c3ba89aefc2208667c237bde981188290d0a8fca (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{{template "base/head" .}}
{{template "base/navbar" .}}
<div class="container" id="body">
    <form action="/repo/create" method="post" class="form-horizontal card" id="repo-create">
        {{.CsrfTokenHtml}}
        <h3>Create New Repository</h3>
        {{template "base/alert" .}}
        <div class="form-group">
            <label class="col-md-2 control-label">Owner<strong class="text-danger">*</strong></label>
            <div class="col-md-8">
                <div class="btn-group" id="repo-owner-switch">
                    <button type="button" class="btn btn-default">
                        <img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username">
                        {{.SignedUser.Name}}
                    </button>
                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
                        <span class="caret"></span>
                    </button>
                    <div class="dropdown-menu clone-group-btn no-propagation">
                        <ul id="dashboard-switch-menu" class="list-unstyled">
                            <li data-uid="{{.SignedUser.Id}}" class="checked">
                                <a href="#">
                                    <i class="fa fa-check"></i>
                                    <img src="{{.SignedUser.AvatarLink}}?s=28" alt="user-avatar" title="username">
                                    {{.SignedUser.Name}}
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
            <input type="hidden" value="{{.SignedUserId}}" name="userId" id="repo-owner-id"/>

            <!--<div class="col-md-8">
                <p class="form-control-static">{{.SignedUserName}}</p>
                <input type="hidden" value="{{.SignedUserId}}" name="userId"/>
            </div>-->
        </div>

        <div class="form-group {{if .Err_RepoName}}has-error has-feedback{{end}}">
            <label class="col-md-2 control-label">Repository<strong class="text-danger">*</strong></label>
            <div class="col-md-8">
                <input name="repo" type="text" class="form-control" placeholder="Type your repository name" value="{{.repo}}" required="required">
                <span class="help-block">Great repository names are short and memorable. </span>
            </div>
        </div>

        <div class="form-group">
            <label class="col-md-2 control-label">Visibility</label>
            <div class="col-md-8">
                <div class="checkbox">
                    <label>
                        <input type="checkbox" name="private" {{if .private}}checked{{end}}>
                        <strong>This repository is private</strong>
                    </label>
                </div>
            </div>
        </div>

        <div class="form-group {{if .Err_Description}}has-error has-feedback{{end}}">
            <label class="col-md-2 control-label">Description</label>
            <div class="col-md-8">
                <textarea name="desc" class="form-control" placeholder="Type your repository description">{{.desc}}</textarea>
            </div>
        </div>

        <div class="form-group">
            <label class="col-md-2 control-label">Language</label>
            <div class="col-md-8">
                <select class="form-control" name="language">
                    <option value="">Select a language</option>
                    {{range .LanguageIgns}}<option value="{{.}}">{{.}}</option>{{end}}
                </select>
                <br>
                <div>Need more .gitignore? Go <a href="http://www.gitignore.io/">gitignore.io</a>.</div>
            </div>
        </div>

        <div class="form-group">
            <label class="col-md-2 control-label">License</label>
            <div class="col-md-8">
                <select class="form-control" name="license">
                    <option value="">Select a license</option>
                    {{range .Licenses}}<option value="{{.}}">{{.}}</option>{{end}}
                </select>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-8 col-md-offset-2">
                <div class="checkbox">
                    <label>
                        <input type="checkbox" name="initReadme" {{if .initReadme}}checked{{end}}>
                        <strong>Initialize this repository with a README</strong>
                    </label>
                </div>
            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-8">
                <button type="submit" class="btn btn-lg btn-primary">Create repository</button>
                <a href="/" class="text-danger">Cancel</a>
            </div>
        </div>
    </form>
</div>
{{template "base/footer" .}}